summaryrefslogtreecommitdiff
path: root/libavutil/pixdesc.h
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-09-08 14:53:34 +0200
committerHendrik Leppkes <h.leppkes@gmail.com>2015-09-08 14:53:34 +0200
commitf53569a93f853057d4852601b547a1d9c57613b6 (patch)
tree8491cdda5b8afec5a9c7f9b655a157bddf0d7616 /libavutil/pixdesc.h
parentc734b34b044a182e10b4c2ad95a4f9f75aa1d64c (diff)
parent6b3ef7f080293956b2e5212b83135c6b051212e9 (diff)
Merge commit '6b3ef7f080293956b2e5212b83135c6b051212e9'
* commit '6b3ef7f080293956b2e5212b83135c6b051212e9': lavu: Remove bit packing from AVComponentDescriptor Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavutil/pixdesc.h')
-rw-r--r--libavutil/pixdesc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavutil/pixdesc.h b/libavutil/pixdesc.h
index 426a8e13af..b92aa443c1 100644
--- a/libavutil/pixdesc.h
+++ b/libavutil/pixdesc.h
@@ -31,30 +31,30 @@ typedef struct AVComponentDescriptor {
/**
* Which of the 4 planes contains the component.
*/
- uint16_t plane : 2;
+ int plane;
/**
* Number of elements between 2 horizontally consecutive pixels minus 1.
* Elements are bits for bitstream formats, bytes otherwise.
*/
- uint16_t step_minus1 : 3;
+ int step_minus1;
/**
* Number of elements before the component of the first pixel plus 1.
* Elements are bits for bitstream formats, bytes otherwise.
*/
- uint16_t offset_plus1 : 3;
+ int offset_plus1;
/**
* Number of least significant bits that must be shifted away
* to get the value.
*/
- uint16_t shift : 3;
+ int shift;
/**
* Number of bits in the component minus 1.
*/
- uint16_t depth_minus1 : 4;
+ int depth_minus1;
} AVComponentDescriptor;
/**