Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-12 21:58:10 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-12 21:58:10 +0400
commitb1a9a2c4ffb87004ef5947d64bbfb34544793278 (patch)
tree5994627b7d4da068bf048c8e5170200b9320dc02 /ffmpeg.c
parent19688e87e5f87421146eda62797644d5b25dfacc (diff)
ffmpeg: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 769e9a118b..17a7eab46d 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1746,10 +1746,6 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
frame_sample_aspect= av_opt_ptr(avcodec_get_frame_class(), decoded_frame, "sample_aspect_ratio");
for (i = 0; i < ist->nb_filters; i++) {
- int changed = ist->st->codec->width != ist->filters[i]->filter->outputs[0]->w
- || ist->st->codec->height != ist->filters[i]->filter->outputs[0]->h
- || ist->st->codec->pix_fmt != ist->filters[i]->filter->outputs[0]->format;
-
if (!frame_sample_aspect->num)
*frame_sample_aspect = ist->st->sample_aspect_ratio;