mirror of https://git.ffmpeg.org/ffmpeg.git
clenaup: #ifdec CONFIG*
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit b39e01a6e8
)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b92ef485c7
commit
657737e58d
|
@ -76,7 +76,7 @@ static int rv34_parse(AVCodecParserContext *s,
|
||||||
return buf_size;
|
return buf_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_RV30_PARSER
|
#if CONFIG_RV30_PARSER
|
||||||
AVCodecParser ff_rv30_parser = {
|
AVCodecParser ff_rv30_parser = {
|
||||||
.codec_ids = { CODEC_ID_RV30 },
|
.codec_ids = { CODEC_ID_RV30 },
|
||||||
.priv_data_size = sizeof(RV34ParseContext),
|
.priv_data_size = sizeof(RV34ParseContext),
|
||||||
|
@ -84,7 +84,7 @@ AVCodecParser ff_rv30_parser = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_RV40_PARSER
|
#if CONFIG_RV40_PARSER
|
||||||
AVCodecParser ff_rv40_parser = {
|
AVCodecParser ff_rv40_parser = {
|
||||||
.codec_ids = { CODEC_ID_RV40 },
|
.codec_ids = { CODEC_ID_RV40 },
|
||||||
.priv_data_size = sizeof(RV34ParseContext),
|
.priv_data_size = sizeof(RV34ParseContext),
|
||||||
|
|
|
@ -113,7 +113,7 @@ AVInputFormat ff_bit_demuxer = {
|
||||||
.extensions = "bit",
|
.extensions = "bit",
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_MUXERS
|
#if CONFIG_MUXERS
|
||||||
static int write_header(AVFormatContext *s)
|
static int write_header(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
AVCodecContext *enc = s->streams[0]->codec;
|
AVCodecContext *enc = s->streams[0]->codec;
|
||||||
|
|
Loading…
Reference in New Issue