Name all external facing structs

Replace all anonymous structs with struct name matching current typedef
minus _t.

Change-Id: I639295e8f1bc4651fffc9286a7dba5171c92ce92
This commit is contained in:
James Zern 2010-05-20 13:14:17 -04:00
parent 0fc9abfbfd
commit f767a5a29c
4 changed files with 4 additions and 4 deletions

View 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
{

View 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 */

View 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) */

View File

@ -60,7 +60,7 @@ extern "C" {
/**\brief Image Descriptor */
typedef struct
typedef struct vpx_image
{
img_fmt_t fmt; /**< Image Format */