diff options
author | James Almer <jamrial@gmail.com> | 2017-05-20 13:17:12 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-05-20 13:17:12 -0300 |
commit | f20161d8994399ba86f28e683126ea3b2ea0709b (patch) | |
tree | 8f780696ff9e9ff8db8765a145aa25106fdc6be8 /libavcodec/decode.c | |
parent | 02327d1237f19619272e7b04b715e807c16af6a5 (diff) | |
download | ffmpeg-f20161d8994399ba86f28e683126ea3b2ea0709b.tar.gz |
avcodec/decode: fix function name
Diffstat (limited to 'libavcodec/decode.c')
-rw-r--r-- | libavcodec/decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/decode.c b/libavcodec/decode.c index e423e68eab..584d9d6241 100644 --- a/libavcodec/decode.c +++ b/libavcodec/decode.c @@ -763,7 +763,7 @@ static int apply_cropping(AVCodecContext *avctx, AVFrame *frame) /* adjust the offsets to avoid breaking alignment */ if (!(avctx->flags & AV_CODEC_FLAG_UNALIGNED)) { - int log2_crop_align = frame->crop_left ? av_ctz(frame->crop_left) : INT_MAX; + int log2_crop_align = frame->crop_left ? ff_ctz(frame->crop_left) : INT_MAX; int min_log2_align = INT_MAX; for (i = 0; frame->data[i]; i++) { |