diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-07 18:47:45 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-08 16:03:17 +0200 |
commit | 2c984ecbdd84534a4e97b58d131f0666a2f419e3 (patch) | |
tree | fbdad962df321efb8b106f0fcbe62082d976a825 /libavformat | |
parent | 3da2f4502ae679370cec535990e41a0d2ea9ea90 (diff) | |
download | ffmpeg-2c984ecbdd84534a4e97b58d131f0666a2f419e3.tar.gz |
avformat/Makefile: Add missing rawdec dependency for IPU demuxer
Needed for ff_raw_read_partial_packet and ff_raw_options.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index caca95802a..9a3fc4cb8f 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -284,7 +284,7 @@ OBJS-$(CONFIG_IMAGE_XPM_PIPE_DEMUXER) += img2dec.o img2.o OBJS-$(CONFIG_IMAGE_XWD_PIPE_DEMUXER) += img2dec.o img2.o OBJS-$(CONFIG_INGENIENT_DEMUXER) += ingenientdec.o rawdec.o OBJS-$(CONFIG_IPMOVIE_DEMUXER) += ipmovie.o -OBJS-$(CONFIG_IPU_DEMUXER) += ipudec.o +OBJS-$(CONFIG_IPU_DEMUXER) += ipudec.o rawdec.o OBJS-$(CONFIG_IRCAM_DEMUXER) += ircamdec.o ircam.o pcm.o OBJS-$(CONFIG_IRCAM_MUXER) += ircamenc.o ircam.o rawenc.o OBJS-$(CONFIG_ISS_DEMUXER) += iss.o |