ffmpeg | branch: master | James Almer <jamr...@gmail.com> | Sat May 20 13:17:12 
2017 -0300| [f20161d8994399ba86f28e683126ea3b2ea0709b] | committer: James Almer

avcodec/decode: fix function name

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f20161d8994399ba86f28e683126ea3b2ea0709b
---

 libavcodec/decode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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++) {

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

Reply via email to