mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
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:
parent
29c90869e6
commit
621d7fe936
@ -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 {
|
||||
|
@ -28,8 +28,8 @@
|
||||
#endif
|
||||
|
||||
|
||||
typedef struct _FrameHookEntry {
|
||||
struct _FrameHookEntry *next;
|
||||
typedef struct FrameHookEntry {
|
||||
struct FrameHookEntry *next;
|
||||
FrameHookConfigureFn Configure;
|
||||
FrameHookProcessFn Process;
|
||||
FrameHookReleaseFn Release;
|
||||
|
Loading…
Reference in New Issue
Block a user