Lines Matching refs:table1
57 SCDOffsetTable table1; /* Table 1, contains the track info. */
125 ctx->hdr.table1.count = AV_RB16(buf + 2);
129 ctx->hdr.table1.offset = AV_RB32(buf + 12);
137 if ((ret = scd_read_table(s, &ctx->hdr.table1)) < 0)
163 hoffset = ctx->hdr.table1.entries[index];
269 ctx->tracks = av_calloc(ctx->hdr.table1.count, sizeof(SCDTrackHeader));
273 for (int i = 0; i < ctx->hdr.table1.count; i++) {
278 if (ctx->hdr.table1.count == 0)
293 for (int i = 0; i < ctx->hdr.table1.count; i++) {
298 ctx->current_track %= ctx->hdr.table1.count;
351 for(int i = 0; i < ctx->hdr.table1.count; ++i)
362 av_freep(&ctx->hdr.table1.entries);