aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/aptxdec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-06-07 21:08:59 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-08 16:03:17 +0200
commit41ab409332d2b838394a35692629b864181491b8 (patch)
tree7ade60431fa5325cb1df820b7949d8a6690b1fce /libavformat/aptxdec.c
parent2c984ecbdd84534a4e97b58d131f0666a2f419e3 (diff)
downloadffmpeg-41ab409332d2b838394a35692629b864181491b8.tar.gz
avformat/Makefile: Remove rawdec dependency from aptx, codec2 demuxers
These demuxers don't need anything from rawdec; they furthermore only used rawdec.h to include opt.h. Both of this has been fixed. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/aptxdec.c')
-rw-r--r--libavformat/aptxdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aptxdec.c b/libavformat/aptxdec.c
index 489194f49d..dca76ae117 100644
--- a/libavformat/aptxdec.c
+++ b/libavformat/aptxdec.c
@@ -20,8 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include "libavutil/opt.h"
#include "avformat.h"
-#include "rawdec.h"
#define APTX_BLOCK_SIZE 4
#define APTX_PACKET_SIZE (256*APTX_BLOCK_SIZE)