diff --git a/ffmpeg.c b/ffmpeg.c index d4d910e2f403ac28cb1d6c87d5a8b5721f650fa5..8409610983011e22c5e3c28ac59b35e13bd89b8f 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2050,7 +2050,7 @@ static int transcode_audio(InputStream *ist, AVPacket *pkt, int *got_output) static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int64_t *pkt_pts) { - AVFrame *decoded_frame, *filtered_frame = NULL; + AVFrame *decoded_frame; void *buffer_to_free = NULL; int i, ret = 0; float quality = 0; @@ -2119,6 +2119,7 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int rate_emu_sleep(ist); for (i = 0; i < nb_output_streams; i++) { + AVFrame *filtered_frame = NULL; OutputStream *ost = &output_streams[i]; int frame_size;