summaryrefslogtreecommitdiff
path: root/libavcodec/rv34_parser.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-01-15 16:06:00 +0100
committerDiego Biurrun <diego@biurrun.de>2013-01-15 16:20:14 +0100
commit0b22107d95042793a897b6a8823fe43bd55d68de (patch)
treece6c9fb332d030dc342634a59c69171311eda311 /libavcodec/rv34_parser.c
parent320e1d0df3dfbfabb248d8aff784320dd20183a2 (diff)
rv34_parser: Adjust #if for disabling individual parsers
As CONFIG_ values are always defined, they have to be checked via #if.
Diffstat (limited to 'libavcodec/rv34_parser.c')
-rw-r--r--libavcodec/rv34_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rv34_parser.c b/libavcodec/rv34_parser.c
index ccb431426c..8af74431c0 100644
--- a/libavcodec/rv34_parser.c
+++ b/libavcodec/rv34_parser.c
@@ -76,7 +76,7 @@ static int rv34_parse(AVCodecParserContext *s,
return buf_size;
}
-#ifdef CONFIG_RV30_PARSER
+#if CONFIG_RV30_PARSER
AVCodecParser ff_rv30_parser = {
.codec_ids = { AV_CODEC_ID_RV30 },
.priv_data_size = sizeof(RV34ParseContext),
@@ -84,7 +84,7 @@ AVCodecParser ff_rv30_parser = {
};
#endif
-#ifdef CONFIG_RV40_PARSER
+#if CONFIG_RV40_PARSER
AVCodecParser ff_rv40_parser = {
.codec_ids = { AV_CODEC_ID_RV40 },
.priv_data_size = sizeof(RV34ParseContext),