diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-04-10 14:27:59 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-04-10 19:27:38 +0200 |
commit | 679481b3b61dda5e2827f9757bf8c12a8de193c9 (patch) | |
tree | c6d1173f0e8fafe25001b790ad66fc82535f8ddf /libavcodec/snowenc.c | |
parent | 2130bd8f5b6504ea14cd41e33f5d4f431eb724f3 (diff) | |
download | ffmpeg-679481b3b61dda5e2827f9757bf8c12a8de193c9.tar.gz |
Drop some pointless #ifdefs.
The files are only compiled if the #ifdef conditions are met.
Diffstat (limited to 'libavcodec/snowenc.c')
-rw-r--r-- | libavcodec/snowenc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/snowenc.c b/libavcodec/snowenc.c index 03d0afcab0..7b010e1f1c 100644 --- a/libavcodec/snowenc.c +++ b/libavcodec/snowenc.c @@ -152,7 +152,6 @@ static void dwt_quantize(SnowContext *s, Plane *p, DWTELEM *buffer, int width, i #endif /* QUANTIZE2==1 */ -#if CONFIG_SNOW_ENCODER static av_cold int encode_init(AVCodecContext *avctx) { SnowContext *s = avctx->priv_data; @@ -1925,4 +1924,3 @@ AVCodec ff_snow_encoder = { .long_name = NULL_IF_CONFIG_SMALL("Snow"), .priv_class = &snowenc_class, }; -#endif |