diff options
author | Anton Khirnov <anton@khirnov.net> | 2021-05-21 19:16:10 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2021-06-10 16:51:44 +0200 |
commit | e7196afe28acaea623fc4803b86c7e6241bf8861 (patch) | |
tree | 0a1315e2000ab44dca1e5bca2b7c26c4e9381823 /libavformat/a64.c | |
parent | e67e02d15672a87da1b0566e197a1e19dc7e1e33 (diff) | |
download | ffmpeg-e7196afe28acaea623fc4803b86c7e6241bf8861.tar.gz |
lavf/a64: avoid avcodec.h dependency
Diffstat (limited to 'libavformat/a64.c')
-rw-r--r-- | libavformat/a64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/a64.c b/libavformat/a64.c index e6018f06d3..6e19162fe2 100644 --- a/libavformat/a64.c +++ b/libavformat/a64.c @@ -19,7 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "libavcodec/avcodec.h" +#include "libavcodec/codec_id.h" +#include "libavcodec/codec_par.h" #include "libavcodec/bytestream.h" #include "avformat.h" #include "rawenc.h" |