OSDN Git Service

arm/h264pred: add missing argument type.
authorRonald S. Bultje <rsbultje@gmail.com>
Tue, 10 May 2011 12:44:49 +0000 (08:44 -0400)
committerRonald S. Bultje <rsbultje@gmail.com>
Tue, 10 May 2011 12:44:49 +0000 (08:44 -0400)
libavcodec/arm/h264pred_init_arm.c

index cae32d7..e96f339 100644 (file)
@@ -74,7 +74,7 @@ static void ff_h264_pred_init_neon(H264PredContext *h, int codec_id, const int b
         h->pred16x16[PLANE_PRED8x8  ] = ff_pred16x16_plane_neon;
 }
 
-void ff_h264_pred_init_arm(H264PredContext *h, int codec_id, bit_depth)
+void ff_h264_pred_init_arm(H264PredContext *h, int codec_id, int bit_depth)
 {
     if (HAVE_NEON)    ff_h264_pred_init_neon(h, codec_id, bit_depth);
 }