diff options
author | Anton Khirnov <anton@khirnov.net> | 2021-05-21 19:56:46 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2021-06-10 16:51:44 +0200 |
commit | 1256b71ba9509ed670e82ed95cad8e45e9866c3a (patch) | |
tree | 4a1939fc9d0053e88c47a823f48e434ef508e17b /libavformat/mp3dec.c | |
parent | c9642265f8089d93c468487d5f852b40da74c125 (diff) | |
download | ffmpeg-1256b71ba9509ed670e82ed95cad8e45e9866c3a.tar.gz |
lavf/mp3dec: avoid avcodec.h dependency
Diffstat (limited to 'libavformat/mp3dec.c')
-rw-r--r-- | libavformat/mp3dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index c6949e6095..0402700445 100644 --- a/libavformat/mp3dec.c +++ b/libavformat/mp3dec.c @@ -32,7 +32,7 @@ #include "id3v1.h" #include "replaygain.h" -#include "libavcodec/avcodec.h" +#include "libavcodec/codec_id.h" #include "libavcodec/mpegaudiodecheader.h" #define XING_FLAG_FRAMES 0x01 |