Commit b0b83973 authored by Stefano Sabatini's avatar Stefano Sabatini

ffmpeg: remove unused variable padding_src in do_video_out()

Signed-off-by: 's avatarStefano Sabatini <stefano.sabatini-lala@poste.it>
parent 133208ff
...@@ -1146,7 +1146,7 @@ static void do_video_out(AVFormatContext *s, ...@@ -1146,7 +1146,7 @@ static void do_video_out(AVFormatContext *s,
int *frame_size) int *frame_size)
{ {
int nb_frames, i, ret; int nb_frames, i, ret;
AVFrame *final_picture, *formatted_picture, *resampling_dst, *padding_src; AVFrame *final_picture, *formatted_picture, *resampling_dst;
AVCodecContext *enc, *dec; AVCodecContext *enc, *dec;
double sync_ipts; double sync_ipts;
...@@ -1191,7 +1191,6 @@ static void do_video_out(AVFormatContext *s, ...@@ -1191,7 +1191,6 @@ static void do_video_out(AVFormatContext *s,
formatted_picture = in_picture; formatted_picture = in_picture;
final_picture = formatted_picture; final_picture = formatted_picture;
padding_src = formatted_picture;
resampling_dst = &ost->pict_tmp; resampling_dst = &ost->pict_tmp;
if ( ost->resample_height != ist->st->codec->height if ( ost->resample_height != ist->st->codec->height
...@@ -1205,7 +1204,6 @@ static void do_video_out(AVFormatContext *s, ...@@ -1205,7 +1204,6 @@ static void do_video_out(AVFormatContext *s,
#if !CONFIG_AVFILTER #if !CONFIG_AVFILTER
if (ost->video_resample) { if (ost->video_resample) {
padding_src = NULL;
final_picture = &ost->pict_tmp; final_picture = &ost->pict_tmp;
if( ost->resample_height != ist->st->codec->height if( ost->resample_height != ist->st->codec->height
|| ost->resample_width != ist->st->codec->width || ost->resample_width != ist->st->codec->width
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment