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>2014-10-15 17:54:02 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-10-15 18:08:36 +0400
commit220a15c074876b04760e60aeae5badc7412b2f83 (patch)
tree5f7063fa84c972350911957d2d18bdab34e47194 /libavcodec/vc1.c
parent09450c55092523d073f7ec415f863531838ca908 (diff)
avcodec/vc1: fix time_base and framerate
They are not just inverses of each other. This should restore behavior to before the introduction of framerate Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r--libavcodec/vc1.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index b03eb94167..b3955f26de 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -490,7 +490,6 @@ static int decode_sequence_header_adv(VC1Context *v, GetBitContext *gb)
}
}
if (v->broadcast) { // Pulldown may be present
- v->s.avctx->framerate.num *= 2;
v->s.avctx->ticks_per_frame = 2;
}
}