summaryrefslogtreecommitdiff
path: root/libavformat/mxf.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-06-03 17:19:15 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-06-03 17:19:15 +0000
commit6dc55543284994403740012693c9a32648dddea3 (patch)
tree0e6479c345afe49affb96634f2a643f1152147ce /libavformat/mxf.c
parentb7889fce2f41abce64ab0c274bfa096f7668c32b (diff)
no need to seek on specific key anymore, since klv_read_packet will sync, tested on encrypted files
Originally committed as revision 9187 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mxf.c')
-rw-r--r--libavformat/mxf.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c
index 143cef57cc..2756113546 100644
--- a/libavformat/mxf.c
+++ b/libavformat/mxf.c
@@ -1017,7 +1017,6 @@ static int mxf_probe(AVProbeData *p) {
/* XXX: use MXF Index */
static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
{
- MXFContext *mxf = s->priv_data;
AVStream *st = s->streams[stream_index];
int64_t seconds;
@@ -1027,11 +1026,6 @@ static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_ti
sample_time = 0;
seconds = av_rescale(sample_time, st->time_base.num, st->time_base.den);
url_fseek(&s->pb, (s->bit_rate * seconds) >> 3, SEEK_SET);
- if (!mxf_read_sync(&s->pb, mxf->sync_key, 12))
- return -1;
-
- /* found KLV key */
- url_fseek(&s->pb, -12, SEEK_CUR);
av_update_cur_dts(s, st, sample_time);
return 0;
}