[FFmpeg-cvslog] r18465 - trunk/libavformat/mpegts.c

bcoudurier subversion
Sun Apr 12 11:04:12 CEST 2009


Author: bcoudurier
Date: Sun Apr 12 11:04:12 2009
New Revision: 18465

Log:
remove useless wrapper

Modified:
   trunk/libavformat/mpegts.c

Modified: trunk/libavformat/mpegts.c
==============================================================================
--- trunk/libavformat/mpegts.c	Sun Apr 12 10:53:22 2009	(r18464)
+++ trunk/libavformat/mpegts.c	Sun Apr 12 11:04:12 2009	(r18465)
@@ -789,13 +789,6 @@ static void sdt_cb(MpegTSFilter *filter,
     }
 }
 
-/* scan services in a transport stream by looking at the SDT */
-static void mpegts_scan_sdt(MpegTSContext *ts)
-{
-    mpegts_open_section_filter(ts, SDT_PID,
-                                                sdt_cb, ts, 1);
-}
-
 static int64_t get_pts(const uint8_t *p)
 {
     int64_t pts = (int64_t)((p[0] >> 1) & 0x07) << 30;
@@ -1264,7 +1257,8 @@ static int mpegts_read_header(AVFormatCo
 
         /* first do a scaning to get all the services */
         url_fseek(pb, pos, SEEK_SET);
-        mpegts_scan_sdt(ts);
+
+        mpegts_open_section_filter(ts, SDT_PID, sdt_cb, ts, 1);
 
         mpegts_open_section_filter(ts, PAT_PID, pat_cb, ts, 1);
 



More information about the ffmpeg-cvslog mailing list