Commit 89547cfb authored by Diego Biurrun's avatar Diego Biurrun

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
parent 3aab27b4
...@@ -1355,6 +1355,7 @@ AVCodec ac3_decoder = { ...@@ -1355,6 +1355,7 @@ AVCodec ac3_decoder = {
.long_name = NULL_IF_CONFIG_SMALL("ATSC A/52A (AC-3)"), .long_name = NULL_IF_CONFIG_SMALL("ATSC A/52A (AC-3)"),
}; };
#if CONFIG_EAC3_DECODER
AVCodec eac3_decoder = { AVCodec eac3_decoder = {
.name = "eac3", .name = "eac3",
.type = CODEC_TYPE_AUDIO, .type = CODEC_TYPE_AUDIO,
...@@ -1365,3 +1366,4 @@ AVCodec eac3_decoder = { ...@@ -1365,3 +1366,4 @@ AVCodec eac3_decoder = {
.decode = ac3_decode_frame, .decode = ac3_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("ATSC A/52B (AC-3, E-AC-3)"), .long_name = NULL_IF_CONFIG_SMALL("ATSC A/52B (AC-3, E-AC-3)"),
}; };
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment