提交 621d7fe9 编写于 作者: D Diego Biurrun

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

Originally committed as revision 11435 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 29c90869
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册