diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-09 08:49:28 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-09-09 08:49:28 +0000 |
commit | 5e89b50b2958a072dac99ea65e35c228dc12c31a (patch) | |
tree | bdf327565eaa1f7ee7e2db1eed8da2ac29e79da6 | |
parent | 8dc6f118b76b7fab69dfdfee34f08a33b83b9ea8 (diff) | |
download | ffmpeg-5e89b50b2958a072dac99ea65e35c228dc12c31a.tar.gz |
undefines a few temporary defines which were not undefined after their usage.
Patch by Panagiotis Issaris
Originally committed as revision 6205 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/utils.c | 4 | ||||
-rw-r--r-- | libavformat/utils.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 6123210925..0e59852eae 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -754,6 +754,10 @@ static const AVOption options[]={ #undef A #undef V +#undef S +#undef E +#undef D +#undef DEFAULT static AVClass av_codec_context_class = { "AVCodecContext", context_to_name, options }; diff --git a/libavformat/utils.c b/libavformat/utils.c index 6348ac98df..d9b57897dc 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -474,6 +474,10 @@ static const AVOption options[]={ {NULL}, }; +#undef E +#undef D +#undef DEFAULT + static const AVClass av_format_context_class = { "AVFormatContext", format_to_name, options }; #if LIBAVCODEC_VERSION_INT > ((52<<16)+(0<<8)+0) |