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

Originally committed as revision 11435 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-01-06 16:02:55 +00:00
parent 29c90869e6
commit 621d7fe936
2 changed files with 4 additions and 4 deletions

View File

@ -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 {

View File

@ -28,8 +28,8 @@
#endif
typedef struct _FrameHookEntry {
struct _FrameHookEntry *next;
typedef struct FrameHookEntry {
struct FrameHookEntry *next;
FrameHookConfigureFn Configure;
FrameHookProcessFn Process;
FrameHookReleaseFn Release;