[FFmpeg-cvslog] r11435 - in trunk: libavcodec/qdm2.c libavformat/framehook.c

diego subversion
Sun Jan 6 17:02:55 CET 2008


Author: diego
Date: Sun Jan  6 17:02:55 2008
New Revision: 11435

Log:
Rename two structures, identifiers starting with _[A-Z] are reserved.


Modified:
   trunk/libavcodec/qdm2.c
   trunk/libavformat/framehook.c

Modified: trunk/libavcodec/qdm2.c
==============================================================================
--- trunk/libavcodec/qdm2.c	(original)
+++ trunk/libavcodec/qdm2.c	Sun Jan  6 17:02:55 2008
@@ -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 {

Modified: trunk/libavformat/framehook.c
==============================================================================
--- trunk/libavformat/framehook.c	(original)
+++ trunk/libavformat/framehook.c	Sun Jan  6 17:02:55 2008
@@ -28,8 +28,8 @@
 #endif
 
 
-typedef struct _FrameHookEntry {
-    struct _FrameHookEntry *next;
+typedef struct FrameHookEntry {
+    struct FrameHookEntry *next;
     FrameHookConfigureFn Configure;
     FrameHookProcessFn Process;
     FrameHookReleaseFn Release;




More information about the ffmpeg-cvslog mailing list