Browse Source

avcodec/mjpegdec: fix typo on a warning

tags/n3.0
James Almer 9 years ago
parent
commit
3885ef0c6c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mjpegdec.c

+ 1
- 1
libavcodec/mjpegdec.c View File

@@ -282,7 +282,7 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
}

if (s->avctx->bits_per_raw_sample != bits) {
av_log(s->avctx, AV_LOG_INFO, "Changeing bps to %d\n", bits);
av_log(s->avctx, AV_LOG_INFO, "Changing bps to %d\n", bits);
s->avctx->bits_per_raw_sample = bits;
init_idct(s->avctx);
}


Loading…
Cancel
Save