fix missing ;

This commit is contained in:
Isaac Connor 2019-02-13 10:34:09 -05:00
parent d1b3b23c09
commit 060751602b
1 changed files with 3 additions and 3 deletions

View File

@ -944,13 +944,13 @@ int VideoStore::writeAudioFramePacket(AVPacket *ipkt) {
in_frame->nb_samples
))
#else
(ret = swr_convert_frame(resample_ctx, out_frame, in_frame))
ret = swr_convert_frame(resample_ctx, out_frame, in_frame);
#endif
#else
#if defined(HAVE_LIBAVRESAMPLE)
(ret = avresample_convert(resample_ctx, NULL, 0, 0, in_frame->data,
0, in_frame->nb_samples))
ret = avresample_convert(resample_ctx, NULL, 0, 0, in_frame->data,
0, in_frame->nb_samples);
#endif
#endif
av_frame_unref(in_frame);