Browse Source

avcodec/decode: fix function name

tags/n3.4
James Almer 8 years ago
parent
commit
f20161d899
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/decode.c

+ 1
- 1
libavcodec/decode.c View File

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


Loading…
Cancel
Save