Name all external facing structs
authorJames Zern <jzern@google.com>
Thu, 20 May 2010 17:14:17 +0000 (13:14 -0400)
committerJames Zern <jzern@google.com>
Thu, 20 May 2010 17:17:53 +0000 (13:17 -0400)
Replace all anonymous structs with struct name matching current typedef
minus _t.

Change-Id: I639295e8f1bc4651fffc9286a7dba5171c92ce92

vpx_codec/internal/vpx_codec_internal.h
vpx_codec/vpx_codec.h
vpx_codec/vpx_decoder.h
vpx_codec/vpx_image.h

index 0867552..e95d603 100644 (file)
@@ -314,7 +314,7 @@ struct vpx_codec_iface
 };
 
 /*!\brief Callback function pointer / user data pair storage */
-typedef struct
+typedef struct vpx_codec_priv_cb_pair
 {
     union
     {
index e2a79f9..d18505c 100644 (file)
@@ -196,7 +196,7 @@ extern "C" {
      * may reference the 'name' member to get a printable description of the
      * algorithm.
      */
-    typedef struct
+    typedef struct vpx_codec_ctx
     {
         const char              *name;        /**< Printable interface name */
         vpx_codec_iface_t       *iface;       /**< Interface pointers */
index 5e4968d..ab0818f 100644 (file)
@@ -68,7 +68,7 @@ extern "C" {
      * stream. Algorithms may extend this structure with data specific
      * to their bitstream by setting the sz member appropriately.
      */
-    typedef struct
+    typedef struct vpx_codec_stream_info
     {
         unsigned int sz;     /**< Size of this structure */
         unsigned int w;      /**< Width (or 0 for unknown/default) */
index a8a9416..09def8f 100644 (file)
@@ -60,7 +60,7 @@ extern "C" {
 
 
     /**\brief Image Descriptor */
-    typedef struct
+    typedef struct vpx_image
     {
         img_fmt_t     fmt; /**< Image Format */