diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-08-07 23:10:25 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-08-07 23:10:25 +0000 |
commit | 4a384de5b8ced22e05d29e08b885a8d79968adf5 (patch) | |
tree | 06748e8272176e4ba6c1fc7ee1bf733b4c582cd0 /libavcodec/x86/h264dsp_mmx.c | |
parent | 73c44cb2869bfdbea829942eb35efa6d4c4e2f91 (diff) | |
download | ffmpeg-4a384de5b8ced22e05d29e08b885a8d79968adf5.tar.gz |
Split h264dsp and h264pred in configure.
Many H.264 derivatives, like RV40 and VP8, use the H.264 prediction functions
but not the weight/loopfilter functions.
This should reduce the size of builds with one of these derivatives but without
H.264 decoding itself.
Originally committed as revision 24741 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/h264dsp_mmx.c')
-rw-r--r-- | libavcodec/x86/h264dsp_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/h264dsp_mmx.c b/libavcodec/x86/h264dsp_mmx.c index 992e0dd4c8..ebd87518ba 100644 --- a/libavcodec/x86/h264dsp_mmx.c +++ b/libavcodec/x86/h264dsp_mmx.c @@ -2365,7 +2365,7 @@ void ff_pred4x4_tm_vp8_mmxext (uint8_t *src, const uint8_t *topright, int s void ff_pred4x4_tm_vp8_ssse3 (uint8_t *src, const uint8_t *topright, int stride); void ff_pred4x4_vertical_vp8_mmxext(uint8_t *src, const uint8_t *topright, int stride); -#if CONFIG_H264DSP +#if CONFIG_H264PRED void ff_h264_pred_init_x86(H264PredContext *h, int codec_id) { mm_flags = mm_support(); |