diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-04-30 21:34:56 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-04-30 21:34:56 +0000 |
commit | da00b525786fe228fa77ace700dcb571521a4f7d (patch) | |
tree | 8e3ddeaa00a2004f14258070d8226804fb2ff8de /libavcodec | |
parent | bf4f19dc654b91dfc8405e124cac8a1eb912da74 (diff) | |
download | ffmpeg-da00b525786fe228fa77ace700dcb571521a4f7d.tar.gz |
Don't #if a function declaration and properly indent it.
Originally committed as revision 18722 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 859aca3137..c76efeb04f 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2754,9 +2754,7 @@ void ff_avg_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride) { } #endif /* CONFIG_CAVS_DECODER */ -#if CONFIG_MLP_DECODER || CONFIG_TRUEHD_DECODER - void ff_mlp_init(DSPContext* c, AVCodecContext *avctx); -#endif +void ff_mlp_init(DSPContext* c, AVCodecContext *avctx); #if CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER /* VC-1 specific */ |