Browse Source

both timestamps are dts, (checked trailer.gxf, spec is unclear)

Originally committed as revision 5958 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 19 years ago
parent
commit
b9b18fbdea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/gxf.c

+ 1
- 1
libavformat/gxf.c View File

@@ -462,7 +462,7 @@ static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
// as well.
ret = av_get_packet(pb, pkt, pkt_len);
pkt->stream_index = get_sindex(s, track_id, track_type);
pkt->pts = field_nr;
pkt->dts = field_nr;
return ret;
}
return AVERROR_IO;


Loading…
Cancel
Save