diff options
author | Måns Rullgård <mans@mansr.com> | 2009-12-02 17:21:43 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-12-02 17:21:43 +0000 |
commit | c5d6cd5c814a6d8891a16befde6be546ec615d21 (patch) | |
tree | 49887de323cb369a562405dbd76f1f2e959cf78f /libavcodec/arm | |
parent | 702b5885a1eeb0121db004471909460c2f69528f (diff) | |
download | ffmpeg-c5d6cd5c814a6d8891a16befde6be546ec615d21.tar.gz |
ARM: 1l c&p fix: do not set pred16x16_plane for rv40
Originally committed as revision 20705 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm')
-rw-r--r-- | libavcodec/arm/h264pred_init_arm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/arm/h264pred_init_arm.c b/libavcodec/arm/h264pred_init_arm.c index a6e5bc2659..a7d9960129 100644 --- a/libavcodec/arm/h264pred_init_arm.c +++ b/libavcodec/arm/h264pred_init_arm.c @@ -62,7 +62,6 @@ static void ff_h264_pred_init_neon(H264PredContext *h, int codec_id) h->pred16x16[DC_PRED8x8 ] = ff_pred16x16_dc_neon; h->pred16x16[VERT_PRED8x8 ] = ff_pred16x16_vert_neon; h->pred16x16[HOR_PRED8x8 ] = ff_pred16x16_hor_neon; - h->pred16x16[PLANE_PRED8x8 ] = ff_pred16x16_plane_neon; h->pred16x16[LEFT_DC_PRED8x8] = ff_pred16x16_left_dc_neon; h->pred16x16[TOP_DC_PRED8x8 ] = ff_pred16x16_top_dc_neon; h->pred16x16[DC_128_PRED8x8 ] = ff_pred16x16_128_dc_neon; |