diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-25 21:44:12 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-27 00:11:21 +0100 |
commit | a0fa6b6030e7c118c7c41e9c15c80c61ba0a1bae (patch) | |
tree | 8685a1e5e06d292817716a83bec8f13b8d680ef8 /libavcodec/aacdec.c | |
parent | c6cf253c98a7839d852f7f707979c8401a26459c (diff) | |
download | ffmpeg-a0fa6b6030e7c118c7c41e9c15c80c61ba0a1bae.tar.gz |
avocdec/aac: Move decoder-only stuff to new header aacdec.h
AACContext is not used by the encoder at all.
Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r-- | libavcodec/aacdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index d66ebf4a7c..962b1705c6 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -45,6 +45,7 @@ #include "sinewin.h" #include "aac.h" +#include "aacdec.h" #include "aactab.h" #include "aacdectab.h" #include "adts_header.h" |