Commit b5fb9618 authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11435 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0153d0e1
...@@ -97,9 +97,9 @@ typedef struct { ...@@ -97,9 +97,9 @@ typedef struct {
/** /**
* A node in the subpacket list * A node in the subpacket list
*/ */
typedef struct _QDM2SubPNode { typedef struct QDM2SubPNode {
QDM2SubPacket *packet; ///< packet 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; } QDM2SubPNode;
typedef struct { typedef struct {
......
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
#endif #endif
typedef struct _FrameHookEntry { typedef struct FrameHookEntry {
struct _FrameHookEntry *next; struct FrameHookEntry *next;
FrameHookConfigureFn Configure; FrameHookConfigureFn Configure;
FrameHookProcessFn Process; FrameHookProcessFn Process;
FrameHookReleaseFn Release; FrameHookReleaseFn Release;
......
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