Browse Source

clenaup: #ifdec CONFIG*

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.10
Michael Niedermayer 13 years ago
parent
commit
b39e01a6e8
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      libavcodec/rv34_parser.c
  2. +1
    -1
      libavformat/bit.c

+ 2
- 2
libavcodec/rv34_parser.c View File

@@ -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 = { 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 = { CODEC_ID_RV40 },
.priv_data_size = sizeof(RV34ParseContext),


+ 1
- 1
libavformat/bit.c View File

@@ -113,7 +113,7 @@ AVInputFormat ff_bit_demuxer = {
.extensions = "bit",
};

#ifdef CONFIG_MUXERS
#if CONFIG_MUXERS
static int write_header(AVFormatContext *s)
{
AVCodecContext *enc = s->streams[0]->codec;


Loading…
Cancel
Save