OSDN Git Service

avformat: Identify anonymous AVIO typedef structs.
authorDale Curtis <dalecurtis@chromium.org>
Thu, 27 Sep 2012 02:21:03 +0000 (19:21 -0700)
committerDiego Biurrun <diego@biurrun.de>
Thu, 27 Sep 2012 07:14:22 +0000 (09:14 +0200)
Anonymous typedef structs prevent forward declaration, this
change gives the AVIOContext and AVIOInterruptCB structures
a name.  These structures are now in line with other common
structures such as AVFormatContext and AVCodecContext.

Signed-off-by: Dale Curtis <dalecurtis@chromium.org>
Signed-off-by: Diego Biurrun <diego@biurrun.de>
libavformat/avio.h

index 55c96bc..96e8e1c 100644 (file)
@@ -48,7 +48,7 @@
  * new elements have been added after this struct in AVFormatContext
  * or AVIOContext.
  */
-typedef struct {
+typedef struct AVIOInterruptCB {
     int (*callback)(void*);
     void *opaque;
 } AVIOInterruptCB;
@@ -65,7 +65,7 @@ typedef struct {
  *       when implementing custom I/O. Normally these are set to the
  *       function pointers specified in avio_alloc_context()
  */
-typedef struct {
+typedef struct AVIOContext {
     /**
      * A class for private options.
      *