summaryrefslogtreecommitdiff
path: root/libavformat/mpegts.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2010-03-15 23:14:07 +0000
committerAurelien Jacobs <aurel@gnuage.org>2010-03-15 23:14:07 +0000
commit588af13feec4c56dc2a1089420b5d7cf8e13e762 (patch)
tree5aa486fa1c745b6af8330274e850d807ff4fc75d /libavformat/mpegts.c
parent48b2ef95b3411dc55cd6dae25c93b841d73db17e (diff)
rename av_program_add_stream_index to ff_program_add_stream_index
it is an internal function, not part of public API Originally committed as revision 22561 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r--libavformat/mpegts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 2951bb7364..0a49ed9d68 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -928,7 +928,7 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
add_pid_to_pmt(ts, h->id, pid);
- av_program_add_stream_index(ts->stream, h->id, st->index);
+ ff_program_add_stream_index(ts->stream, h->id, st->index);
desc_list_len = get16(&p, p_end) & 0xfff;
if (desc_list_len < 0)
@@ -993,7 +993,7 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
p = desc_end;
if (prog_reg_desc == AV_RL32("HDMV") && stream_type == 0x83 && pes->sub_st) {
- av_program_add_stream_index(ts->stream, h->id, pes->sub_st->index);
+ ff_program_add_stream_index(ts->stream, h->id, pes->sub_st->index);
pes->sub_st->codec->codec_tag = st->codec->codec_tag;
}
}