]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/dnxhddec.c
Move av_tempfile() into libavutil, it is a generically usefull thing and its small.
[ffmpeg] / libavcodec / dnxhddec.c
index 04d42398e75f3dd84df229c1763db7368d1f9c1b..ad56aabd0ede626b9b938465a96838bf95db5d2c 100644 (file)
@@ -122,7 +122,7 @@ static int dnxhd_decode_header(DNXHDContext *ctx, const uint8_t *buf, int buf_si
     ctx->height = AV_RB16(buf + 0x18);
     ctx->width  = AV_RB16(buf + 0x1a);
 
-    av_dlog(ctx->avctx, "width %d, heigth %d\n", ctx->width, ctx->height);
+    av_dlog(ctx->avctx, "width %d, height %d\n", ctx->width, ctx->height);
 
     if (buf[0x21] & 0x40) {
         ctx->avctx->pix_fmt = PIX_FMT_YUV422P10;