Commit 621d7fe9 authored by Diego Biurrun's avatar Diego Biurrun

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

Originally committed as revision 11435 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 29c90869
...@@ -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