Browse Source

Make sure that eac3_decoder only gets enabled when CONFIG_EAC3_DECODER is set.

Originally committed as revision 19500 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Diego Biurrun 16 years ago
parent
commit
89547cfb36
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/ac3dec.c

+ 2
- 0
libavcodec/ac3dec.c View File

@@ -1355,6 +1355,7 @@ AVCodec ac3_decoder = {
.long_name = NULL_IF_CONFIG_SMALL("ATSC A/52A (AC-3)"),
};

#if CONFIG_EAC3_DECODER
AVCodec eac3_decoder = {
.name = "eac3",
.type = CODEC_TYPE_AUDIO,
@@ -1365,3 +1366,4 @@ AVCodec eac3_decoder = {
.decode = ac3_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("ATSC A/52B (AC-3, E-AC-3)"),
};
#endif

Loading…
Cancel
Save