Mercurial > libavcodec.hg
diff tscc.c @ 3800:9b75ab171fa9 libavcodec
1l: correct argument order in avcodec_check_dimensions
| author | kostya |
|---|---|
| date | Sun, 01 Oct 2006 05:09:20 +0000 |
| parents | 99cbff5f8038 |
| children | c8c591fe26f8 |
line wrap: on
line diff
--- a/tscc.c Sat Sep 30 23:49:09 2006 +0000 +++ b/tscc.c Sun Oct 01 05:09:20 2006 +0000 @@ -264,7 +264,7 @@ c->pic.data[0] = NULL; c->height = avctx->height; - if (avcodec_check_dimensions(avctx, avctx->height, avctx->width) < 0) { + if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) { return 1; }
