|
@@ -151,7 +151,7 @@ static void write_section_data(AVFormatContext *s, MpegTSFilter *tss1,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-MpegTSFilter *mpegts_open_section_filter(MpegTSContext *ts, unsigned int pid,
|
|
|
+static MpegTSFilter *mpegts_open_section_filter(MpegTSContext *ts, unsigned int pid,
|
|
|
SectionCallback *section_cb, void *opaque,
|
|
|
int check_crc)
|
|
|
|
|
@@ -183,7 +183,7 @@ MpegTSFilter *mpegts_open_section_filter(MpegTSContext *ts, unsigned int pid,
|
|
|
return filter;
|
|
|
}
|
|
|
|
|
|
-MpegTSFilter *mpegts_open_pes_filter(MpegTSContext *ts, unsigned int pid,
|
|
|
+static MpegTSFilter *mpegts_open_pes_filter(MpegTSContext *ts, unsigned int pid,
|
|
|
PESCallback *pes_cb,
|
|
|
void *opaque)
|
|
|
{
|
|
@@ -205,7 +205,7 @@ MpegTSFilter *mpegts_open_pes_filter(MpegTSContext *ts, unsigned int pid,
|
|
|
return filter;
|
|
|
}
|
|
|
|
|
|
-void mpegts_close_filter(MpegTSContext *ts, MpegTSFilter *filter)
|
|
|
+static void mpegts_close_filter(MpegTSContext *ts, MpegTSFilter *filter)
|
|
|
{
|
|
|
int pid;
|
|
|
|
|
@@ -609,7 +609,7 @@ static void pat_scan_cb(void *opaque, const uint8_t *section, int section_len)
|
|
|
ts->pat_filter = NULL;
|
|
|
}
|
|
|
|
|
|
-void mpegts_set_service(MpegTSContext *ts, int sid,
|
|
|
+static void mpegts_set_service(MpegTSContext *ts, int sid,
|
|
|
SetServiceCallback *set_service_cb, void *opaque)
|
|
|
{
|
|
|
ts->set_service_cb = set_service_cb;
|
|
@@ -696,7 +696,7 @@ static void sdt_cb(void *opaque, const uint8_t *section, int section_len)
|
|
|
}
|
|
|
|
|
|
/* scan services in a transport stream by looking at the SDT */
|
|
|
-void mpegts_scan_sdt(MpegTSContext *ts)
|
|
|
+static void mpegts_scan_sdt(MpegTSContext *ts)
|
|
|
{
|
|
|
ts->sdt_filter = mpegts_open_section_filter(ts, SDT_PID,
|
|
|
sdt_cb, ts, 1);
|
|
@@ -704,7 +704,7 @@ void mpegts_scan_sdt(MpegTSContext *ts)
|
|
|
|
|
|
/* scan services in a transport stream by looking at the PAT (better
|
|
|
than nothing !) */
|
|
|
-void mpegts_scan_pat(MpegTSContext *ts)
|
|
|
+static void mpegts_scan_pat(MpegTSContext *ts)
|
|
|
{
|
|
|
ts->pat_filter = mpegts_open_section_filter(ts, PAT_PID,
|
|
|
pat_scan_cb, ts, 1);
|