Lines Matching defs:xcolumns
57 AAXColumn *xcolumns;
154 a->xcolumns = av_calloc(a->columns, sizeof(*a->xcolumns));
155 if (!a->xcolumns)
170 a->xcolumns[c].flag = info >> 4;
171 a->xcolumns[c].type = info & 0x0F;
173 switch (a->xcolumns[c].type) {
198 a->xcolumns[c].size = value_size;
200 if (a->xcolumns[c].flag & COLUMN_FLAG_NAME)
201 a->xcolumns[c].name = a->string_table + offset;
203 if (a->xcolumns[c].flag & COLUMN_FLAG_DEFAULT) {
205 a->xcolumns[c].offset = avio_tell(pb) - a->schema_offset;
209 if (a->xcolumns[c].flag & COLUMN_FLAG_ROW) {
211 a->xcolumns[c].offset = column_offset;
229 if (!a->xcolumns[c].name || strcmp(a->xcolumns[c].name, "data"))
232 type = a->xcolumns[c].type;
233 flag = a->xcolumns[c].flag;
234 col_offset = a->xcolumns[c].offset;
380 av_freep(&a->xcolumns);