comparison mov.c @ 3163:b8c9d2e2b227 libavformat

update description
author bcoudurier
date Fri, 21 Mar 2008 10:51:12 +0000
parents 5e03e5577f79
children 31447ec2ae2e
comparison
equal deleted inserted replaced
3162:5e03e5577f79 3163:b8c9d2e2b227
132 132
133 /* those functions parse an atom */ 133 /* those functions parse an atom */
134 /* return code: 134 /* return code:
135 1: found what I wanted, exit 135 1: found what I wanted, exit
136 0: continue to parse next atom 136 0: continue to parse next atom
137 -1: error occured, exit 137 <0: error occured, exit
138 */ 138 */
139 /* links atom IDs to parse functions */ 139 /* links atom IDs to parse functions */
140 typedef struct MOVParseTableEntry { 140 typedef struct MOVParseTableEntry {
141 uint32_t type; 141 uint32_t type;
142 int (*parse)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom); 142 int (*parse)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom);