diff options
-rw-r--r-- | xbmc/cores/dvdplayer/Codecs/ffmpeg/libavformat/mpegts.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xbmc/cores/dvdplayer/Codecs/ffmpeg/libavformat/mpegts.c b/xbmc/cores/dvdplayer/Codecs/ffmpeg/libavformat/mpegts.c index 1b53572289..8d792aae45 100644 --- a/xbmc/cores/dvdplayer/Codecs/ffmpeg/libavformat/mpegts.c +++ b/xbmc/cores/dvdplayer/Codecs/ffmpeg/libavformat/mpegts.c @@ -1757,6 +1757,9 @@ MpegTSContext *ff_mpegts_parse_open(AVFormatContext *s) ts->raw_packet_size = TS_PACKET_SIZE; ts->stream = s; ts->auto_guess = 1; + mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1); + mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1); + return ts; } |