# HG changeset patch # User schreter # Date 1252252772 0 # Node ID 68b98b497783626f58b5de29b0bd4cabf97d0065 # Parent 17ad184d14beb5908c4247231272c0ddb8c24bfe disable new seeking code in mpeg-ts per #ifdef (use old read_seek by default) diff -r 17ad184d14be -r 68b98b497783 mpegts.c --- a/mpegts.c Sun Sep 06 08:57:19 2009 +0000 +++ b/mpegts.c Sun Sep 06 15:59:32 2009 +0000 @@ -21,6 +21,7 @@ //#define DEBUG //#define DEBUG_SEEK +//#define USE_SYNCPOINT_SEARCH #include "libavutil/crc.h" #include "libavutil/intreadwrite.h" @@ -1524,6 +1525,8 @@ return timestamp; } +#ifdef USE_SYNCPOINT_SEARCH + static int read_seek2(AVFormatContext *s, int stream_index, int64_t min_ts, @@ -1606,6 +1609,33 @@ return ret; } +#else + +static int read_seek(AVFormatContext *s, int stream_index, int64_t target_ts, int flags){ + MpegTSContext *ts = s->priv_data; + uint8_t buf[TS_PACKET_SIZE]; + int64_t pos; + + if(av_seek_frame_binary(s, stream_index, target_ts, flags) < 0) + return -1; + + pos= url_ftell(s->pb); + + for(;;) { + url_fseek(s->pb, pos, SEEK_SET); + if (get_buffer(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE) + return -1; +// pid = AV_RB16(buf + 1) & 0x1fff; + if(buf[1] & 0x40) break; + pos += ts->raw_packet_size; + } + url_fseek(s->pb, pos, SEEK_SET); + + return 0; +} + +#endif + /**************************************************************/ /* parsing functions - called from other demuxers such as RTP */ @@ -1670,7 +1700,9 @@ read_seek, mpegts_get_pcr, .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT, +#ifdef USE_SYNCPOINT_SEARCH .read_seek2 = read_seek2, +#endif }; AVInputFormat mpegtsraw_demuxer = { @@ -1684,5 +1716,7 @@ read_seek, mpegts_get_pcr, .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT, +#ifdef USE_SYNCPOINT_SEARCH .read_seek2 = read_seek2, +#endif };