diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-23 18:12:23 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 02:23:43 +0200 |
commit | 18e55de45a4d0ea197eaeae3a3a9daea186159b9 (patch) | |
tree | 817b85baa5e700667f41bfd80cc49e579814af33 /libavcodec/aptx.h | |
parent | 8e56e6b2be454b7f4f27110793bbf585649f111e (diff) | |
download | ffmpeg-18e55de45a4d0ea197eaeae3a3a9daea186159b9.tar.gz |
avcodec/aptx: Move AudioFrameQueue to aptxenc.c
It is only used by the encoder.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/aptx.h')
-rw-r--r-- | libavcodec/aptx.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/aptx.h b/libavcodec/aptx.h index abb49e6faa..da0697e652 100644 --- a/libavcodec/aptx.h +++ b/libavcodec/aptx.h @@ -26,7 +26,6 @@ #include "libavutil/intreadwrite.h" #include "avcodec.h" #include "mathops.h" -#include "audio_frame_queue.h" enum channels { @@ -95,7 +94,6 @@ typedef struct { int block_size; int32_t sync_idx; Channel channels[NB_CHANNELS]; - AudioFrameQueue afq; } AptXContext; typedef const struct { |