summaryrefslogtreecommitdiff
path: root/libavcodec/pcm.c
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gmail.com>2011-01-25 21:40:11 +0000
committerMans Rullgard <mans@mansr.com>2011-01-26 16:08:45 +0000
commitd36beb3f6902b1217beda576aa18abf7eb72b03c (patch)
tree7b949bfca82ae2fd58fc4a37a5052d6af44fb671 /libavcodec/pcm.c
parent2d162e3825a35b6ac42a27d27c4a3ebbd141828d (diff)
Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/pcm.c')
-rw-r--r--libavcodec/pcm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c
index 3e985ce04f..0785a9d2ab 100644
--- a/libavcodec/pcm.c
+++ b/libavcodec/pcm.c
@@ -473,7 +473,7 @@ static int pcm_decode_frame(AVCodecContext *avctx,
#if CONFIG_ENCODERS
#define PCM_ENCODER(id_,sample_fmt_,name_,long_name_) \
-AVCodec name_ ## _encoder = { \
+AVCodec ff_ ## name_ ## _encoder = { \
.name = #name_, \
.type = AVMEDIA_TYPE_AUDIO, \
.id = id_, \
@@ -489,7 +489,7 @@ AVCodec name_ ## _encoder = { \
#if CONFIG_DECODERS
#define PCM_DECODER(id_,sample_fmt_,name_,long_name_) \
-AVCodec name_ ## _decoder = { \
+AVCodec ff_ ## name_ ## _decoder = { \
.name = #name_, \
.type = AVMEDIA_TYPE_AUDIO, \
.id = id_, \