summaryrefslogtreecommitdiff
path: root/libavformat/vocdec.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-02-15 11:28:39 +0200
committerMartin Storsjö <martin@martin.st>2012-02-15 22:06:17 +0200
commit167f3b8de71657dec0948f0a859259f35b318fac (patch)
treef771d41999e774b15a5d1bafd9ca40bbc7b1128e /libavformat/vocdec.c
parenta082ac412520cd5d812bd57e5ccdad2af557125b (diff)
libavformat: Add an ff_ prefix to some lavf internal symbols
Prefix the functions/tables brktimegm, pcm_read_seek, dv_offset_reset, voc_get_packet, codec_movaudio_tags, codec_movvideo_tags. After this, lavf has no global symbols without the proper prefix. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/vocdec.c')
-rw-r--r--libavformat/vocdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/vocdec.c b/libavformat/vocdec.c
index 6b3438f758..e8c11afbe3 100644
--- a/libavformat/vocdec.c
+++ b/libavformat/vocdec.c
@@ -62,7 +62,7 @@ static int voc_read_header(AVFormatContext *s)
}
int
-voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size)
+ff_voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size)
{
VocDecContext *voc = s->priv_data;
AVCodecContext *dec = st->codec;
@@ -153,7 +153,7 @@ voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size)
static int voc_read_packet(AVFormatContext *s, AVPacket *pkt)
{
- return voc_get_packet(s, pkt, s->streams[0], 0);
+ return ff_voc_get_packet(s, pkt, s->streams[0], 0);
}
AVInputFormat ff_voc_demuxer = {