diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-09-29 23:34:42 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-09-29 23:34:42 +0000 |
commit | 6d3124961b3ad904d17e37e69e63aeb060664dc7 (patch) | |
tree | ded23a0b1122f3651cd245818d66e04511db27e0 /libavcodec/rv10.c | |
parent | b2f86c170d8f0efda101876869550fc29d78b871 (diff) | |
download | ffmpeg-6d3124961b3ad904d17e37e69e63aeb060664dc7.tar.gz |
fix rv20 b frames (broke since r5264 Mon Apr 3 07:52:24 2006 UTC 2x faster ff_mpeg4_set_direct_mv)
Originally committed as revision 6388 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 418bab9cac..344a89d541 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -473,6 +473,7 @@ static int rv20_decode_picture_header(MpegEncContext *s) av_log(s->avctx, AV_LOG_DEBUG, "messed up order, possible from seeking? skipping current b frame\n"); return FRAME_SKIPPED; } + ff_mpeg4_init_direct_mv(s); } } // printf("%d %d %d %d %d\n", seq, (int)s->time, (int)s->last_non_b_time, s->pp_time, s->pb_time); |