---
 libavutil/pixdesc.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavutil/pixdesc.h b/libavutil/pixdesc.h
index e5a16f4..9a883b4 100644
--- a/libavutil/pixdesc.h
+++ b/libavutil/pixdesc.h
@@ -27,7 +27,7 @@
 #include "attributes.h"
 #include "pixfmt.h"
 
-typedef struct AVComponentDescriptor{
+typedef struct AVComponentDescriptor {
     uint16_t plane        :2;            ///< which of the 4 planes contains 
the component
 
     /**
@@ -43,7 +43,7 @@ typedef struct AVComponentDescriptor{
     uint16_t offset_plus1 :3;
     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;
+} AVComponentDescriptor;
 
 /**
  * Descriptor that unambiguously describes how the bits of a pixel are
@@ -54,7 +54,7 @@ typedef struct AVComponentDescriptor{
  *       and all the YUV variants) AVPixFmtDescriptor just stores how values
  *       are stored not what these values represent.
  */
-typedef struct AVPixFmtDescriptor{
+typedef struct AVPixFmtDescriptor {
     const char *name;
     uint8_t nb_components;      ///< The number of components each pixel has, 
(1-4)
 
@@ -83,7 +83,7 @@ typedef struct AVPixFmtDescriptor{
      * comp[2].
      */
     AVComponentDescriptor comp[4];
-}AVPixFmtDescriptor;
+} AVPixFmtDescriptor;
 
 /**
  * Pixel format is big-endian.
-- 
1.9.0

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to