comparison qdm2.c @ 6122:61f95f3a62e0 libavcodec

Rename two structures, identifiers starting with _[A-Z] are reserved.
author diego
date Sun, 06 Jan 2008 16:02:55 +0000
parents 2b72f9bc4f06
children 39cd8d3d5b9e
comparison
equal deleted inserted replaced
6121:bc59962f70b9 6122:61f95f3a62e0
95 } QDM2SubPacket; 95 } QDM2SubPacket;
96 96
97 /** 97 /**
98 * A node in the subpacket list 98 * A node in the subpacket list
99 */ 99 */
100 typedef struct _QDM2SubPNode { 100 typedef struct QDM2SubPNode {
101 QDM2SubPacket *packet; ///< packet 101 QDM2SubPacket *packet; ///< packet
102 struct _QDM2SubPNode *next; ///< pointer to next packet in the list, NULL if leaf node 102 struct QDM2SubPNode *next; ///< pointer to next packet in the list, NULL if leaf node
103 } QDM2SubPNode; 103 } QDM2SubPNode;
104 104
105 typedef struct { 105 typedef struct {
106 float level; 106 float level;
107 float *samples_im; 107 float *samples_im;