diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-08-29 22:47:06 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-08-31 09:57:46 +0200 |
commit | dde372934a5cc1012a2dfe841b7b7db925805ca1 (patch) | |
tree | c72d0265f2de29d10aa681d9bc4cf0c7171cb1f3 | |
parent | 2e2594ca5ba64705114bc26bbb264af245352a73 (diff) | |
download | ffmpeg-dde372934a5cc1012a2dfe841b7b7db925805ca1.tar.gz |
avcodec: remove misleading comment
coded_width is the width before lowres scaling,
coded_height is the height before lowres scaling.
-rw-r--r-- | libavcodec/avcodec.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index b47d41ee78..3c7d781ad0 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2278,8 +2278,7 @@ typedef struct AVCodecContext { int lowres; /** - * Bitstream width / height, may be different from width/height if lowres - * or other things are used. + * Bitstream width / height, may be different from width/height if lowres enabled. * - encoding: unused * - decoding: Set by user before init if known. Codec should override / dynamically change if needed. */ |