Commit 0575772f authored by Dale Curtis's avatar Dale Curtis Committed by Diego Biurrun

avformat: Identify anonymous AVIO typedef structs.

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: 's avatarDale Curtis <dalecurtis@chromium.org>
Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
parent 93e81ee8
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
* new elements have been added after this struct in AVFormatContext * new elements have been added after this struct in AVFormatContext
* or AVIOContext. * or AVIOContext.
*/ */
typedef struct { typedef struct AVIOInterruptCB {
int (*callback)(void*); int (*callback)(void*);
void *opaque; void *opaque;
} AVIOInterruptCB; } AVIOInterruptCB;
...@@ -65,7 +65,7 @@ typedef struct { ...@@ -65,7 +65,7 @@ typedef struct {
* when implementing custom I/O. Normally these are set to the * when implementing custom I/O. Normally these are set to the
* function pointers specified in avio_alloc_context() * function pointers specified in avio_alloc_context()
*/ */
typedef struct { typedef struct AVIOContext {
/** /**
* A class for private options. * A class for private options.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment