diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-24 21:28:16 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 14:14:56 +0200 |
commit | 66b691f99f77ebb59d5c192aab4eefec4d200be8 (patch) | |
tree | ed008b92aa702300b16757f05d90dec0b09aab79 /libavcodec/siren.c | |
parent | e2c24e6a299b7e0e5387bdc50c11d16857b950a0 (diff) | |
download | ffmpeg-66b691f99f77ebb59d5c192aab4eefec4d200be8.tar.gz |
avcodec/internal: Move ff_get_buffer() to decode.h
Only used by decoders (encoders have ff_encode_alloc_frame()).
Also clean up the other headers a bit while removing now redundant
internal.h inclusions.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/siren.c')
-rw-r--r-- | libavcodec/siren.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/siren.c b/libavcodec/siren.c index e7a5a33553..8a22825615 100644 --- a/libavcodec/siren.c +++ b/libavcodec/siren.c @@ -28,9 +28,8 @@ #include "avcodec.h" #include "codec_internal.h" +#include "decode.h" #include "get_bits.h" -#include "internal.h" -#include "mathops.h" static const uint8_t index_table[8] = {4, 4, 3, 3, 2, 2, 1, 0}; static const uint8_t vector_dimension[8] = { 2, 2, 2, 4, 4, 5, 5, 1 }; |