1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-06 08:08:58 +02:00

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
This commit is contained in:
Diego Biurrun 2009-07-23 00:15:23 +00:00
parent 3aab27b459
commit 89547cfb36

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