diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-16 22:51:04 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-19 12:23:47 +0200 |
commit | b0b83973d11a93de142994d3230e7b2b8b42ddb5 (patch) | |
tree | c188589b213062de50067f95b2fbda3337c1d7bf /ffmpeg.c | |
parent | 133208ffb31daeb5eb1d3ef827c2a2d9da78bdad (diff) | |
download | ffmpeg-b0b83973d11a93de142994d3230e7b2b8b42ddb5.tar.gz |
ffmpeg: remove unused variable padding_src in do_video_out()
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1146,7 +1146,7 @@ static void do_video_out(AVFormatContext *s, int *frame_size) { int nb_frames, i, ret; - AVFrame *final_picture, *formatted_picture, *resampling_dst, *padding_src; + AVFrame *final_picture, *formatted_picture, *resampling_dst; AVCodecContext *enc, *dec; double sync_ipts; @@ -1191,7 +1191,6 @@ static void do_video_out(AVFormatContext *s, formatted_picture = in_picture; final_picture = formatted_picture; - padding_src = formatted_picture; resampling_dst = &ost->pict_tmp; if ( ost->resample_height != ist->st->codec->height @@ -1205,7 +1204,6 @@ static void do_video_out(AVFormatContext *s, #if !CONFIG_AVFILTER if (ost->video_resample) { - padding_src = NULL; final_picture = &ost->pict_tmp; if( ost->resample_height != ist->st->codec->height || ost->resample_width != ist->st->codec->width |