diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-06-25 18:25:49 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-06-25 18:25:49 +0000 |
commit | 4af8cdfc3f4a1f777e769cb97c61ef13674699f7 (patch) | |
tree | b4349669fac4eda292f4aaae28cabfe83c80efef /libavcodec/h264pred.c | |
parent | d6f8476be4895c620d58e021ab880823d2fe25bf (diff) | |
download | ffmpeg-4af8cdfc3f4a1f777e769cb97c61ef13674699f7.tar.gz |
16x16 and 8x8c x86 SIMD intra pred functions for VP8 and H.264
Originally committed as revision 23783 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264pred.c')
-rw-r--r-- | libavcodec/h264pred.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index 6e471949c7..3353a9a2c0 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -1299,4 +1299,5 @@ void ff_h264_pred_init(H264PredContext *h, int codec_id){ h->pred16x16_add[ HOR_PRED8x8]= pred16x16_horizontal_add_c; if (ARCH_ARM) ff_h264_pred_init_arm(h, codec_id); + if (ARCH_X86) ff_h264_pred_init_x86(h, codec_id); } |