diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-07 02:51:13 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-21 19:02:18 +0100 |
commit | ab905f1dbc736630538ce61907e6ba691f759d04 (patch) | |
tree | 9640e80addbf076046c7a2759ded0dd360486093 | |
parent | d64828c8afe496c0fdb42499309b59ac175b7971 (diff) | |
download | ffmpeg-ab905f1dbc736630538ce61907e6ba691f759d04.tar.gz |
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@gmail.com>
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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 |