Commit 716d1c2a authored by Diego Biurrun's avatar Diego Biurrun

Eliminate CONFIG_ANY_H263_DECODER preprocessor definition.

It is just a logical OR of several decoder definitions, all of which depend on
CONFIG_H263_DECODER. So it can just be replaced by the latter.

Originally committed as revision 20973 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent af8a008a
......@@ -25,10 +25,6 @@
#include "config.h"
#include "msmpeg4.h"
#define CONFIG_ANY_H263_DECODER (CONFIG_H263_DECODER || \
CONFIG_MSMPEG4_DECODER || \
CONFIG_WMV1_DECODER || \
CONFIG_WMV2_DECODER)
#define CONFIG_ANY_H263 (CONFIG_ANY_H263_DECODER || CONFIG_H263_ENCODER)
#define CONFIG_ANY_H263 (CONFIG_H263_DECODER || CONFIG_H263_ENCODER)
#endif /* AVCODEC_H263_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment