Fix syntax for the libfaad_decoder definition.

Fix compilation (when libfaad is enabled).

Originally committed as revision 17792 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2009-03-03 23:52:31 +00:00
parent 184bc53db4
commit 9d9de444e3
1 changed files with 2 additions and 2 deletions

View File

@ -319,7 +319,7 @@ static av_cold int faac_decode_init(AVCodecContext *avctx)
}
AVCodec libfaad_decoder = {
libfaad,
"libfaad",
CODEC_TYPE_AUDIO,
CODEC_ID_AAC,
sizeof(FAACContext),
@ -328,4 +328,4 @@ AVCodec libfaad_decoder = {
faac_decode_end,
faac_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("libfaad AAC (Advanced Audio Codec)"),
}
};