diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-03-15 10:37:25 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-03-15 10:37:25 +0000 |
commit | 7867978374c3922aae7afbaac8a2765c669917dc (patch) | |
tree | 116f93e0f13bbd41139095fa96516cea3c9790db /libavcodec/pixdesc.h | |
parent | e5681ba0f2f5c7bdc64076ca587b86ced89d2787 (diff) | |
download | ffmpeg-7867978374c3922aae7afbaac8a2765c669917dc.tar.gz |
Expand "lsb" to "least significant bits".
Originally committed as revision 17978 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pixdesc.h')
-rw-r--r-- | libavcodec/pixdesc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pixdesc.h b/libavcodec/pixdesc.h index bab781310c..95ac9f66a0 100644 --- a/libavcodec/pixdesc.h +++ b/libavcodec/pixdesc.h @@ -27,7 +27,7 @@ typedef struct AVComponentDescriptor{ uint16_t plane :2; ///< which of the 4 planes contains the component uint16_t step_minus1 :3; ///< number of bytes between 2 horizontally consecutive pixels minus 1 uint16_t offset_plus1 :3; ///< number of bytes before the component of the first pixel plus 1 - uint16_t shift :3; ///< number of lsb that must be shifted away to get the value + uint16_t shift :3; ///< number of least significant bits that must be shifted away to get the value uint16_t depth_minus1 :4; ///< number of bits in the component minus 1 }AVComponentDescriptor; |