diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-06 16:02:55 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-06 16:02:55 +0000 |
commit | 621d7fe936f8f34fff059b2a52f5ab72707e8e95 (patch) | |
tree | 6ff666e716c5926cb3745a2b80064f5c8656b32a | |
parent | 29c90869e64d21cfdc4a01692165b818ae510255 (diff) | |
download | ffmpeg-621d7fe936f8f34fff059b2a52f5ab72707e8e95.tar.gz |
Rename two structures, identifiers starting with _[A-Z] are reserved.
Originally committed as revision 11435 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/qdm2.c | 4 | ||||
-rw-r--r-- | libavformat/framehook.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/qdm2.c b/libavcodec/qdm2.c index 79b976fb0b..1a5037e359 100644 --- a/libavcodec/qdm2.c +++ b/libavcodec/qdm2.c @@ -97,9 +97,9 @@ typedef struct { /** * A node in the subpacket list */ -typedef struct _QDM2SubPNode { +typedef struct QDM2SubPNode { QDM2SubPacket *packet; ///< packet - struct _QDM2SubPNode *next; ///< pointer to next packet in the list, NULL if leaf node + struct QDM2SubPNode *next; ///< pointer to next packet in the list, NULL if leaf node } QDM2SubPNode; typedef struct { diff --git a/libavformat/framehook.c b/libavformat/framehook.c index 8738f80307..eb5184f02a 100644 --- a/libavformat/framehook.c +++ b/libavformat/framehook.c @@ -28,8 +28,8 @@ #endif -typedef struct _FrameHookEntry { - struct _FrameHookEntry *next; +typedef struct FrameHookEntry { + struct FrameHookEntry *next; FrameHookConfigureFn Configure; FrameHookProcessFn Process; FrameHookReleaseFn Release; |