From 090a41790e10d6903e1ccee21f153b9558390cd6 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sun, 24 Aug 2008 14:12:03 +0000 Subject: voc: add ff_ prefix to some global const data Originally committed as revision 14945 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/vocenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/vocenc.c') diff --git a/libavformat/vocenc.c b/libavformat/vocenc.c index a96dfc7616..88fc41c51a 100644 --- a/libavformat/vocenc.c +++ b/libavformat/vocenc.c @@ -36,7 +36,7 @@ static int voc_write_header(AVFormatContext *s) || s->streams[0]->codec->codec_type != CODEC_TYPE_AUDIO) return AVERROR_PATCHWELCOME; - put_buffer(pb, voc_magic, sizeof(voc_magic) - 1); + put_buffer(pb, ff_voc_magic, sizeof(ff_voc_magic) - 1); put_le16(pb, header_size); put_le16(pb, version); put_le16(pb, ~version + 0x1234); @@ -99,5 +99,5 @@ AVOutputFormat voc_muxer = { voc_write_header, voc_write_packet, voc_write_trailer, - .codec_tag=(const AVCodecTag*[]){voc_codec_tags, 0}, + .codec_tag=(const AVCodecTag*[]){ff_voc_codec_tags, 0}, }; -- cgit v1.2.3