Lines Matching defs:ebml
3017 Ebml ebml = { 0 };
3024 if (ebml_parse(matroska, ebml_syntax, &ebml) || !ebml.doctype) {
3026 ebml_free(ebml_syntax, &ebml);
3029 if (ebml.version > EBML_VERSION ||
3030 ebml.max_size > sizeof(uint64_t) ||
3031 ebml.id_length > sizeof(uint32_t) ||
3032 ebml.doctype_version > 3) {
3035 ebml.version, ebml.doctype, ebml.doctype_version);
3036 ebml_free(ebml_syntax, &ebml);
3038 } else if (ebml.doctype_version == 3) {
3042 ebml.version, ebml.doctype, ebml.doctype_version);
3045 if (!strcmp(ebml.doctype, matroska_doctypes[i]))
3048 av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype);
3050 ebml_free(ebml_syntax, &ebml);
3054 ebml_free(ebml_syntax, &ebml);