diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-10 08:44:49 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-10 08:44:49 -0400 |
commit | b27b54de31af2ad449291514e790aacde650ded2 (patch) | |
tree | c7869cfb10e1458bdd641ca4d1d4adc4fdd2175d /libavcodec | |
parent | 86b29553f86471719adfb4ba86eec0a82f1eb347 (diff) | |
download | ffmpeg-b27b54de31af2ad449291514e790aacde650ded2.tar.gz |
arm/h264pred: add missing argument type.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/arm/h264pred_init_arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/h264pred_init_arm.c b/libavcodec/arm/h264pred_init_arm.c index cae32d7567..e96f339a55 100644 --- a/libavcodec/arm/h264pred_init_arm.c +++ b/libavcodec/arm/h264pred_init_arm.c @@ -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); } |