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 /libavcodec/qdm2.c | |
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
Diffstat (limited to 'libavcodec/qdm2.c')
-rw-r--r-- | libavcodec/qdm2.c | 4 |
1 files changed, 2 insertions, 2 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 { |