diff options
Diffstat (limited to 'libavcodec/rv30.c')
-rw-r--r-- | libavcodec/rv30.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv30.c b/libavcodec/rv30.c index 944d8fd0b4..e871b534e5 100644 --- a/libavcodec/rv30.c +++ b/libavcodec/rv30.c @@ -47,7 +47,7 @@ static int rv30_parse_slice_header(RV34DecContext *r, GetBitContext *gb, SliceIn return -1; si->quant = get_bits(gb, 5); skip_bits1(gb); - skip_bits(gb, 13); // timestamp + si->pts = get_bits(gb, 13); skip_bits(gb, r->rpr); si->width = w; si->height = h; |