diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-08-15 06:14:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-08-15 06:14:40 +0200 |
commit | 95b5b525b1e3020260502322c0452da58f823782 (patch) | |
tree | c34e2bbaeeadc4f7118f3524320ec6b34a77a5bd | |
parent | 10b7b4a6a1585a7c46487b00594798cdd92eed37 (diff) | |
download | ffmpeg-95b5b525b1e3020260502322c0452da58f823782.tar.gz |
h264pred_init_arm: compile hotfix
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/arm/h264pred_init_arm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/arm/h264pred_init_arm.c b/libavcodec/arm/h264pred_init_arm.c index 62f891e0fb..4c5758d3f7 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, int bit_depth) +void ff_h264_pred_init_arm(H264PredContext *h, int codec_id, int bit_depth, const int chroma_format_idc) { - if (HAVE_NEON) ff_h264_pred_init_neon(h, codec_id, bit_depth); + if (HAVE_NEON) ff_h264_pred_init_neon(h, codec_id, bit_depth, chroma_format_idc); } |