| 842 | } |
| 843 | |
| 844 | void UBFFmpegVideoEncoderWorker::writeLatestVideoFrame() |
| 845 | { |
| 846 | AVFrame* frame = mImageQueue.dequeue(); |
| 847 | writeFrame(frame, mVideoPacket, mController->mVideoStream, mController->mVideoCodecContext, mController->mOutputFormatContext); |
| 848 | av_freep(&frame->data[0]); |
| 849 | av_frame_free(&frame); |
| 850 | } |
| 851 | |
| 852 | void UBFFmpegVideoEncoderWorker::writeLatestAudioFrame() |
| 853 | { |
nothing calls this directly
no test coverage detected