[FFmpeg-cvslog] avcodec/Makefile: Make H.263 decoder compilable without H.263I
Andreas Rheinhardt
git at videolan.org
Thu Jan 21 20:09:54 EET 2021
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Thu Jan 7 02:51:13 2021 +0100| [ab905f1dbc736630538ce61907e6ba691f759d04] | committer: Andreas Rheinhardt
avcodec/Makefile: Make H.263 decoder compilable without H.263I
The only call to ff_intel_h263_decode_picture_header() is already behind
"if (CONFIG_H263I_DECODER)".
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ab905f1dbc736630538ce61907e6ba691f759d04
---
libavcodec/Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index c7de95fd18..f5cb63cb85 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -357,7 +357,8 @@ OBJS-$(CONFIG_H261_DECODER) += h261dec.o h261data.o h261.o
OBJS-$(CONFIG_H261_ENCODER) += h261enc.o h261data.o h261.o
OBJS-$(CONFIG_H263_DECODER) += h263dec.o h263.o ituh263dec.o \
mpeg4video.o mpeg4videodec.o \
- intelh263dec.o h263data.o
+ h263data.o
+OBJS-$(CONFIG_H263I_DECODER) += intelh263dec.o
OBJS-$(CONFIG_H263_ENCODER) += mpeg4videoenc.o mpeg4video.o \
h263.o ituh263enc.o h263data.o
OBJS-$(CONFIG_H263_V4L2M2M_DECODER) += v4l2_m2m_dec.o
More information about the ffmpeg-cvslog
mailing list