Browse Source

mxfdec: update current edit unit when seeking in mxf files without index tables

Fixes audio packet pts values in some files generated by AVID TRMG 3.01.

Signed-off-by: Marton Balint <cus@passwd.hu>
Reviewed-by: Tomas Härdin <tomas.hardin@codemill.se>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Marton Balint Michael Niedermayer 12 years ago
parent
commit
f1e606c762
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/mxfdec.c

+ 1
- 0
libavformat/mxfdec.c View File

@@ -2454,6 +2454,7 @@ static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_ti
if ((ret = avio_seek(s->pb, (s->bit_rate * seconds) >> 3, SEEK_SET)) < 0) if ((ret = avio_seek(s->pb, (s->bit_rate * seconds) >> 3, SEEK_SET)) < 0)
return ret; return ret;
ff_update_cur_dts(s, st, sample_time); ff_update_cur_dts(s, st, sample_time);
mxf->current_edit_unit = sample_time;
} else { } else {
t = &mxf->index_tables[0]; t = &mxf->index_tables[0];




Loading…
Cancel
Save