diff vocenc.c @ 3764:9cff515fd4c6 libavformat

voc: add ff_ prefix to some global const data
author aurel
date Sun, 24 Aug 2008 14:12:03 +0000
parents 7a0230981402
children f062deeedb8d
line wrap: on
line diff
--- a/vocenc.c	Sun Aug 24 14:02:55 2008 +0000
+++ b/vocenc.c	Sun Aug 24 14:12:03 2008 +0000
@@ -36,7 +36,7 @@
         || 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 @@
     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},
 };