diff avcodec.h @ 1245:cd88870c4560 libavcodec

* support for AAC audio streams via libfaad * could be complied with runtime linking of libfaad (CONFIG_FAADBIN) * missing/untested support for raw AAC streams (maybe there will be just one entry for aac) * missing configure check for libfaad/config option
author kabi
date Mon, 12 May 2003 10:55:19 +0000
parents fc2a7eefa9cc
children 802614404398
line wrap: on
line diff
--- a/avcodec.h	Mon May 12 04:28:35 2003 +0000
+++ b/avcodec.h	Mon May 12 10:55:19 2003 +0000
@@ -53,6 +53,8 @@
     CODEC_ID_H264,
     CODEC_ID_INDEO3,
     CODEC_ID_VP3,
+    CODEC_ID_AAC,
+    CODEC_ID_MPEG4AAC,
 
     /* various pcm "codecs" */
     CODEC_ID_PCM_S16LE,
@@ -1222,6 +1224,8 @@
 extern AVCodec h264_decoder;
 extern AVCodec indeo3_decoder;
 extern AVCodec vp3_decoder;
+extern AVCodec aac_decoder;
+extern AVCodec mpeg4aac_decoder;
 
 /* pcm codecs */
 #define PCM_CODEC(id, name) \