summaryrefslogtreecommitdiff
path: root/libavcodec/msmpeg4enc.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-31 11:12:41 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-03 21:18:25 +0200
commitb0e38c7d1ed8d303f008b0827802b159d8ef9b19 (patch)
tree8f77347d3049d46ab723d1306d2093ee1ef070de /libavcodec/msmpeg4enc.h
parentb10e218df1cfc3f303830ba7a6ef58ae8dc4969b (diff)
downloadffmpeg-b0e38c7d1ed8d303f008b0827802b159d8ef9b19.tar.gz
configure: Add msmpeg4(dec|enc) subsystems
The msmpeg4 decoders/encoders share a common set of prerequisites, ergo it makes sense to use common subsystems for them. This also allows to remove the CONFIG_MSMPEG4_DECODER/ENCODER ad-hoc defines (which violated the CONFIG_ namespace). Reviewed-by: Martin Storsjö <martin@martin.st> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/msmpeg4enc.h')
-rw-r--r--libavcodec/msmpeg4enc.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/msmpeg4enc.h b/libavcodec/msmpeg4enc.h
index 98044913b1..602e60112d 100644
--- a/libavcodec/msmpeg4enc.h
+++ b/libavcodec/msmpeg4enc.h
@@ -22,7 +22,6 @@
#ifndef AVCODEC_MSMPEG4ENC_H
#define AVCODEC_MSMPEG4ENC_H
-#include "config.h"
#include "mpegvideo.h"
#include "put_bits.h"
#include "rl.h"
@@ -45,9 +44,4 @@ void ff_msmpeg4_encode_motion(MpegEncContext * s, int mx, int my);
void ff_msmpeg4_code012(PutBitContext *pb, int n);
-#define CONFIG_MSMPEG4_ENCODER (CONFIG_MSMPEG4V2_ENCODER || \
- CONFIG_MSMPEG4V3_ENCODER || \
- CONFIG_WMV1_ENCODER || \
- CONFIG_WMV2_ENCODER)
-
#endif