Go to the documentation of this file.
   32 #include "config_components.h" 
   77 #define EBML_UNKNOWN_LENGTH  UINT64_MAX  
   78 #define NEEDS_CHECKING                2  
   82 #define SKIP_THRESHOLD      1024 * 1024  
   85 #define UNKNOWN_EQUIV         50 * 1024  
  141 typedef struct Ebml {
 
  426 #define CHILD_OF(parent) { .def = { .n = parent } } 
  823                                  uint32_t 
id, int64_t position)
 
  852                "Seek to desired resync point failed. Seeking to " 
  853                "earliest point available instead.\n");
 
  855                             last_pos + 1), SEEK_SET);
 
  891                          int max_size, uint64_t *number, 
int eof_forbidden)
 
  905     if (!total || read > max_size) {
 
  909                    "0x00 at pos %"PRId64
" (0x%"PRIx64
") invalid as first byte " 
  910                    "of an EBML number\n", 
pos, 
pos);
 
  913                    "Length %d indicated by an EBML number's first byte 0x%02x " 
  914                    "at pos %"PRId64
" (0x%"PRIx64
") exceeds max length %d.\n",
 
  915                    read, (uint8_t) total, 
pos, 
pos, max_size);
 
  923         total = (total << 8) | 
avio_r8(pb);
 
  938                "Read error at pos. %"PRIu64
" (0x%"PRIx64
")\n",
 
  944                "at pos. %"PRIu64
" (0x%"PRIx64
")\n", 
pos, 
pos);
 
  959     if (res > 0 && *number + 1 == 1ULL << (7 * res))
 
  969                           uint64_t default_value, uint64_t *num)
 
  974         *num = default_value;
 
  980         *num = (*num << 8) | 
avio_r8(pb);
 
  990                           int64_t default_value, int64_t *num)
 
  995         *num = default_value;
 
 1002             *num = ((uint64_t)*num << 8) | 
avio_r8(pb);
 
 1013                            double default_value, 
double *num)
 
 1016         *num = default_value;
 
 1018     } 
else if (
size == 4) {
 
 1020     } 
else if (
size == 8) {
 
 1033                            const char *default_value, 
char **
str)
 
 1038     if (
size == 0 && default_value) {
 
 1092                             uint64_t length, int64_t 
pos)
 
 1104     level->length = length;
 
 1124     *num = unum - ((1LL << (7 * res - 1)) - 1);
 
 1155                 *(uint64_t *)dst = 
syntax[
i].def.u;
 
 1158                 *(int64_t *) dst = 
syntax[
i].def.i;
 
 1161                 *(
double *)  dst = 
syntax[
i].def.f;
 
 1194     return id && (
bits + 7) / 8 ==  (8 - 
bits % 8);
 
 1202                                                         uint32_t 
id, int64_t 
pos)
 
 1274                                "at pos. %"PRIu64
" (0x%"PRIx64
")\n", 
pos, 
pos);
 
 1281         pos_alt = 
pos + res;
 
 1304                                             "%"PRId64
"\n", 
id, 
pos);
 
 1314             if ((
unsigned)
list->nb_elem + 1 >= UINT_MAX / 
syntax->list_elem_size)
 
 1317                                       &
list->alloc_elem_size,
 
 1318                                       (
list->nb_elem + 1) * 
syntax->list_elem_size);
 
 1321             list->elem = newelem;
 
 1338                 uint64_t elem_end = pos_alt + length,
 
 1341                 if (elem_end < level_end) {
 
 1343                 } 
else if (elem_end == level_end) {
 
 1347                            "Element at 0x%"PRIx64
" ending at 0x%"PRIx64
" exceeds " 
 1348                            "containing master element ending at 0x%"PRIx64
"\n",
 
 1349                            pos, elem_end, level_end);
 
 1356                        "at 0x%"PRIx64
" inside parent with finite size\n", 
pos);
 
 1366                            "Found unknown-length element 0x%"PRIX32
" other than " 
 1367                            "a cluster at 0x%"PRIx64
". Spec-incompliant, but " 
 1368                            "parsing will nevertheless be attempted.\n", 
id, 
pos);
 
 1375         if (max_lengths[
syntax->type] && length > max_lengths[
syntax->type]) {
 
 1378                        "Invalid length 0x%"PRIx64
" > 0x%"PRIx64
" for element " 
 1379                        "with ID 0x%"PRIX32
" at 0x%"PRIx64
"\n",
 
 1380                        length, max_lengths[
syntax->type], 
id, 
pos);
 
 1383                        "Element with ID 0x%"PRIX32
" at pos. 0x%"PRIx64
" has " 
 1384                        "unknown length, yet the length of an element of its " 
 1385                        "type must be known.\n", 
id, 
pos);
 
 1388                        "Found unknown-length element with ID 0x%"PRIX32
" at " 
 1389                        "pos. 0x%"PRIx64
" for which no syntax for parsing is " 
 1390                        "available.\n", 
id, 
pos);
 
 1427                            "Unknown element %"PRIX32
" at pos. 0x%"PRIx64
" with " 
 1428                            "length 0x%"PRIx64
" considered as invalid data. Last " 
 1429                            "known good position 0x%"PRIx64
", %d unknown elements" 
 1475             if (!level1_elem->
pos) {
 
 1478             } 
else if (level1_elem->
pos != 
pos)
 
 1496             if ((res2 = 
avio_skip(pb, length - 1)) >= 0) {
 
 1535         if (elem->
count != UINT_MAX)
 
 1558         void *data_off = (
char *) 
data + 
syntax[
i].data_offset;
 
 1569             if (
syntax[
i].list_elem_size) {
 
 1571                 char *ptr = 
list->elem;
 
 1572                 for (j = 0; j < 
list->nb_elem;
 
 1573                      j++, ptr += 
syntax[
i].list_elem_size)
 
 1577                 list->alloc_elem_size = 0;
 
 1592     int len_mask = 0x80, 
size = 1, n = 1, 
i;
 
 1600     while (
size <= 8 && !(total & len_mask)) {
 
 1606     total &= (len_mask - 1);
 
 1608         total = (total << 8) | p->
buf[4 + n++];
 
 1610     if (total + 1 == 1ULL << (7 * 
size)){
 
 1625         if (total < probelen)
 
 1627         for (n = 4 + 
size; n <= 4 + 
size + total - probelen; n++)
 
 1643         if (tracks[
i].num == num)
 
 1654     uint8_t *
data = *buf;
 
 1655     int isize = *buf_size;
 
 1656     uint8_t *pkt_data = 
NULL;
 
 1658     int pkt_size = isize;
 
 1662     if (pkt_size >= 10000000
U)
 
 1665     switch (encodings[0].compression.algo) {
 
 1671         if (header_size && !
header) {
 
 1679         pkt_size = isize + header_size;
 
 1684         memcpy(pkt_data, 
header, header_size);
 
 1685         memcpy(pkt_data + header_size, 
data, isize);
 
 1691             olen       = pkt_size *= 3;
 
 1698             pkt_data = newpktdata;
 
 1710         z_stream zstream = { 0 };
 
 1711         if (!pkt_size || inflateInit(&zstream) != Z_OK)
 
 1713         zstream.next_in  = 
data;
 
 1714         zstream.avail_in = isize;
 
 1719                 inflateEnd(&zstream);
 
 1723             pkt_data          = newpktdata;
 
 1724             zstream.avail_out = pkt_size - zstream.total_out;
 
 1725             zstream.next_out  = pkt_data + zstream.total_out;
 
 1727         } 
while (
result == Z_OK && pkt_size < 10000000);
 
 1728         pkt_size = zstream.total_out;
 
 1729         inflateEnd(&zstream);
 
 1730         if (
result != Z_STREAM_END) {
 
 1731             if (
result == Z_MEM_ERROR)
 
 1743         bz_stream bzstream = { 0 };
 
 1744         if (!pkt_size || BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK)
 
 1746         bzstream.next_in  = 
data;
 
 1747         bzstream.avail_in = isize;
 
 1752                 BZ2_bzDecompressEnd(&bzstream);
 
 1756             pkt_data           = newpktdata;
 
 1757             bzstream.avail_out = pkt_size - bzstream.total_out_lo32;
 
 1758             bzstream.next_out  = pkt_data + bzstream.total_out_lo32;
 
 1759             result = BZ2_bzDecompress(&bzstream);
 
 1760         } 
while (
result == BZ_OK && pkt_size < 10000000);
 
 1761         pkt_size = bzstream.total_out_lo32;
 
 1762         BZ2_bzDecompressEnd(&bzstream);
 
 1763         if (
result != BZ_STREAM_END) {
 
 1764             if (
result == BZ_MEM_ERROR)
 
 1780     *buf_size = pkt_size;
 
 1795     for (
i = 0; 
i < 
list->nb_elem; 
i++) {
 
 1796         const char *lang = tags[
i].
lang &&
 
 1797                            strcmp(tags[
i].lang, 
"und") ? tags[
i].
lang : 
NULL;
 
 1799         if (!tags[
i].
name) {
 
 1807         if (tags[
i].def || !lang) {
 
 1809             if (tags[
i].
sub.nb_elem)
 
 1816             if (tags[
i].
sub.nb_elem)
 
 1830         if (tags[
i].target.attachuid) {
 
 1834                 if (attachment[j].
uid == tags[
i].target.attachuid &&
 
 1835                     attachment[j].stream) {
 
 1837                                          &attachment[j].stream->metadata, 
NULL);
 
 1843                        "The tags at index %d refer to a " 
 1844                        "non-existent attachment %"PRId64
".\n",
 
 1845                        i, tags[
i].target.attachuid);
 
 1847         } 
else if (tags[
i].target.chapteruid) {
 
 1851                 if (chapter[j].
uid == tags[
i].target.chapteruid &&
 
 1852                     chapter[j].chapter) {
 
 1854                                          &chapter[j].chapter->metadata, 
NULL);
 
 1860                        "The tags at index %d refer to a non-existent chapter " 
 1862                        i, tags[
i].target.chapteruid);
 
 1864         } 
else if (tags[
i].target.trackuid) {
 
 1868                 if (track[j].
uid == tags[
i].target.trackuid &&
 
 1871                                          &track[j].stream->metadata, 
NULL);
 
 1877                        "The tags at index %d refer to a non-existent track " 
 1879                        i, tags[
i].target.trackuid);
 
 1883                                  tags[
i].target.type);
 
 1902                    "Max EBML element depth (%d) reached, " 
 1935     for (
i = 0; 
i < seekhead_list->
nb_elem; 
i++) {
 
 1937         uint32_t 
id = seekheads[
i].
id;
 
 1945         if (!elem || elem->
parsed)
 
 1968     uint64_t index_scale = 1;
 
 1974     index_list = &matroska->
index;
 
 1985         for (j = 0; j < pos_list->
nb_elem; j++) {
 
 1988             if (track && track->
stream)
 
 2018     static const char *
const aac_profiles[] = { 
"MAIN", 
"LC", 
"SSR" };
 
 2064         int block_last, block_type, block_size;
 
 2070         if (block_size > 
size)
 
 2079             chmask = 
av_dict_get(dict, 
"WAVEFORMATEXTENSIBLE_CHANNEL_MASK", 
NULL, 0);
 
 2084                            "Invalid value of WAVEFORMATEXTENSIBLE_CHANNEL_MASK\n");
 
 2100     int minor, micro, bttb = 0;
 
 2105         bttb = (
minor >= 36 && minor <= 51 && micro >= 100);
 
 2107     switch (field_order) {
 
 2126                                         int *h_width, 
int *h_height)
 
 2128     switch (stereo_mode) {
 
 2153     int has_mastering_primaries, has_mastering_luminance;
 
 2158     mastering_meta = &
color->mastering_meta;
 
 2160     has_mastering_primaries =
 
 2161         mastering_meta->
r_x > 0 && mastering_meta->
r_y > 0 &&
 
 2162         mastering_meta->
g_x > 0 && mastering_meta->
g_y > 0 &&
 
 2163         mastering_meta->
b_x > 0 && mastering_meta->
b_y > 0 &&
 
 2187                                        (
color->chroma_siting_vert - 1) << 7);
 
 2196                                       (uint8_t *)metadata, 
size);
 
 2205     if (has_mastering_primaries || has_mastering_luminance) {
 
 2214         if (has_mastering_primaries) {
 
 2225         if (has_mastering_luminance) {
 
 2238     double pitch = proj->
pitch, yaw = proj->
yaw, roll = proj->
roll;
 
 2242     if (pitch == 0.0 && yaw == 0.0 && roll == 0.0)
 
 2247     if (pitch != 0.0 || (yaw != 0.0 && yaw != 180.0 && yaw != -180.0) ||
 
 2250                "projection in stream %u (yaw %f, pitch %f, roll %f)\n",
 
 2251                st->
index, yaw, pitch, roll);
 
 2277     const uint8_t *priv_data = mkv_projection->
private.
data;
 
 2279     size_t spherical_size;
 
 2280     uint32_t l = 0, t = 0, 
r = 0, 
b = 0;
 
 2281     uint32_t padding = 0;
 
 2284     if (mkv_projection->
private.
size && priv_data[0] != 0) {
 
 2299             if (
b >= UINT_MAX - t || 
r >= UINT_MAX - l) {
 
 2301                        "Invalid bounding rectangle coordinates " 
 2302                        "%"PRIu32
",%"PRIu32
",%"PRIu32
",%"PRIu32
"\n",
 
 2311         if (l || t || 
r || 
b)
 
 2324                        "Unknown spherical cubemap layout %"PRIu32
"\n", 
layout);
 
 2328             padding = 
AV_RB32(priv_data + 8);
 
 2336                "Unknown spherical metadata type %"PRIu64
"\n",
 
 2380     for (
int i = 0; 
i < mappings_list->
nb_elem; 
i++) {
 
 2383         switch (mapping->
type) {
 
 2384         case MKBETAG(
'd',
'v',
'c',
'C'):
 
 2385         case 
MKBETAG(
'd',
'v',
'v',
'C'):
 
 2392                    "Unknown block additional mapping type 0x%"PRIx64
", value %"PRIu64
", name \"%s\"\n",
 
 2440         uint8_t *extradata = 
NULL;
 
 2441         int extradata_size = 0;
 
 2442         int extradata_offset = 0;
 
 2447         char* key_id_base64 = 
NULL;
 
 2456                    "Unknown or unsupported track type %"PRIu64
"\n",
 
 2475                    "Invalid sample rate %f, defaulting to 8000 instead.\n",
 
 2483                 if (default_duration > UINT64_MAX || default_duration < 0) {
 
 2485                          "Invalid frame rate %e. Cannot calculate default duration.\n",
 
 2501         if (encodings_list->
nb_elem > 1) {
 
 2503                    "Multiple combined encodings not supported");
 
 2504         } 
else if (encodings_list->
nb_elem == 1) {
 
 2505             if (encodings[0].
type) {
 
 2506                 if (encodings[0].encryption.key_id.size > 0) {
 
 2509                     const int b64_size = 
AV_BASE64_SIZE(encodings[0].encryption.key_id.size);
 
 2511                     if (key_id_base64 == 
NULL)
 
 2515                                      encodings[0].encryption.key_id.data,
 
 2516                                      encodings[0].encryption.key_id.size);
 
 2518                     encodings[0].
scope = 0;
 
 2520                            "Unsupported encoding type");
 
 2531                 encodings[0].
scope = 0;
 
 2533                        "Unsupported encoding type");
 
 2543                            "Failed to decode codec private data\n");
 
 2562                                 encodings[0].
scope & 1          &&
 
 2581         if (key_id_base64) {
 
 2587         if (!strcmp(track->
codec_id, 
"V_MS/VFW/FOURCC") &&
 
 2598             extradata_offset    = 40;
 
 2599         } 
else if (!strcmp(track->
codec_id, 
"A_MS/ACM") &&
 
 2613         } 
else if (!strcmp(track->
codec_id, 
"A_QUICKTIME")
 
 2617             uint16_t sample_size;
 
 2623                 if (sample_size == 8) {
 
 2626                 } 
else if (sample_size == 16) {
 
 2635         } 
else if (!strcmp(track->
codec_id, 
"V_QUICKTIME") &&
 
 2691             extradata[0] = (
profile << 3) | ((sri & 0x0E) >> 1);
 
 2692             extradata[1] = ((sri & 0x01) << 7) | (track->
audio.
channels << 3);
 
 2693             if (strstr(track->
codec_id, 
"SBR")) {
 
 2695                 extradata[2]   = 0x56;
 
 2696                 extradata[3]   = 0xE5;
 
 2697                 extradata[4]   = 0x80 | (sri << 3);
 
 2710             AV_WB32(extradata, extradata_size);
 
 2711             memcpy(&extradata[4], 
"alac", 4);
 
 2720                        "Too large audio channel number %"PRIu64
 
 2721                        " or bitdepth %"PRIu64
". Skipping track.\n",
 
 2730             extradata_size = 22;
 
 2735             bytestream_put_be32(&ptr, 
AV_RB32(
"TTA1"));
 
 2736             bytestream_put_le16(&ptr, 1);
 
 2747             extradata_offset = 26;
 
 2762             flavor                       = bytestream_get_be16(&ptr);
 
 2781                     static const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 };
 
 2790                 extradata_offset       = 78;
 
 2802                    "in absence of valid CodecPrivate.\n");
 
 2819                    "Unknown/unsupported AVCodecID %s.\n", track->
codec_id);
 
 2823                    "Track TimestampScale too small %f, assuming 1.0.\n",
 
 2828                             1000 * 1000 * 1000);    
 
 2837         if (strcmp(track->
language, 
"und"))
 
 2870             int display_width_mul  = 1;
 
 2871             int display_height_mul = 1;
 
 2905 #if FF_API_R_FRAME_RATE 
 2925                 snprintf(buf, 
sizeof(buf), 
"%s_%d",
 
 2928                     if (
planes[j].
uid == tracks[k].
uid && tracks[k].stream) {
 
 2930                                     "stereo_mode", buf, 0);
 
 2968                                                              (
AVRational){1, st->codecpar->codec_id == AV_CODEC_ID_OPUS ?
 
 2969                                                                              48000 : st->codecpar->sample_rate});
 
 2979             if (!strcmp(track->
codec_id, 
"D_WEBVTT/CAPTIONS")) {
 
 2981             } 
else if (!strcmp(track->
codec_id, 
"D_WEBVTT/DESCRIPTIONS")) {
 
 2983             } 
else if (!strcmp(track->
codec_id, 
"D_WEBVTT/METADATA")) {
 
 3009     uint64_t max_start = 0;
 
 3024         ebml.
max_size        > 
sizeof(uint64_t)  ||
 
 3028                                       "EBML version %"PRIu64
", doctype %s, doc version %"PRIu64,
 
 3034                "EBML header using unsupported features\n" 
 3035                "(EBML version %"PRIu64
", doctype %s, doc version %"PRIu64
")\n",
 
 3087     attachments = attachments_list->
elem;
 
 3088     for (j = 0; j < attachments_list->
nb_elem; j++) {
 
 3089         if (!(attachments[j].filename && attachments[j].mime &&
 
 3090               attachments[j].bin.data && attachments[j].bin.size > 0)) {
 
 3109             attachments[j].
stream = st;
 
 3120                        attachments[j].bin.size);
 
 3132     chapters = chapters_list->
elem;
 
 3135             (max_start == 0 || chapters[
i].start > max_start)) {
 
 3141             max_start = chapters[
i].
start;
 
 3189                                 uint32_t lace_size[256], 
int *laces)
 
 3192     uint8_t *
data = *buf;
 
 3196         lace_size[0] = 
size;
 
 3212         for (n = 0; n < *laces - 1; n++) {
 
 3220                 lace_size[n] += 
temp;
 
 3223             } 
while (
temp ==  0xff);
 
 3228         lace_size[n] = 
size - total;
 
 3233         if (
size % (*laces))
 
 3235         for (n = 0; n < *laces; n++)
 
 3236             lace_size[n] = 
size / *laces;
 
 3253         total = lace_size[0] = num;
 
 3255         for (n = 1; n < *laces - 1; n++) {
 
 3261             if (lace_size[n - 1] + snum > (uint64_t)INT_MAX)
 
 3264             lace_size[n] = lace_size[n - 1] + snum;
 
 3265             total       += lace_size[n];
 
 3273         lace_size[*laces - 1] = 
size - total;
 
 3285                                    uint8_t *
data, 
int size, uint64_t timecode,
 
 3300             if (
size < cfs * 
h / 2) {
 
 3302                        "Corrupt int4 RM-style audio packet size\n");
 
 3305             for (x = 0; x < 
h / 2; x++)
 
 3306                 memcpy(track->
audio.
buf + x * 2 * 
w + y * cfs,
 
 3307                        data + x * cfs, cfs);
 
 3311                        "Corrupt sipr RM-style audio packet size\n");
 
 3318                        "Corrupt generic RM-style audio packet size\n");
 
 3321             for (x = 0; x < 
w / 
sps; x++)
 
 3323                        sps * (
h * x + ((
h + 1) / 2) * (y & 1) + (y >> 1)),
 
 3364     uint8_t *dst = 
NULL;
 
 3382     while (srclen >= 8) {
 
 3392         multiblock = (
flags & 0x1800) != 0x1800;
 
 3404         if (blocksize > srclen) {
 
 3415         dstlen += blocksize + 32;
 
 3426         memcpy(dst + 
offset + 32, 
src, blocksize);          
 
 3429         srclen -= blocksize;
 
 3430         offset += blocksize + 32;
 
 3449     int dstlen = *
size + 8;
 
 3457     memcpy(dst + 8, *
data, dstlen - 8);
 
 3469                                  uint8_t *
data, 
int data_len,
 
 3475     uint8_t *
id, *settings, *text, *buf;
 
 3476     int id_len, settings_len, text_len;
 
 3484     q = 
data + data_len;
 
 3489         if (*p == 
'\r' || *p == 
'\n') {
 
 3498     if (p >= q || *p != 
'\n')
 
 3505         if (*p == 
'\r' || *p == 
'\n') {
 
 3506             settings_len = p - settings;
 
 3514     if (p >= q || *p != 
'\n')
 
 3520     while (text_len > 0) {
 
 3521         const int len = text_len - 1;
 
 3522         const uint8_t 
c = p[
len];
 
 3523         if (
c != 
'\r' && 
c != 
'\n')
 
 3536     memcpy(
pkt->
data, text, text_len);
 
 3546         memcpy(buf, 
id, id_len);
 
 3549     if (settings_len > 0) {
 
 3557         memcpy(buf, settings, settings_len);
 
 3584                                 uint64_t timecode, uint64_t lace_duration,
 
 3586                                 uint8_t *additional, uint64_t additional_id, 
int additional_size,
 
 3587                                 int64_t discard_padding)
 
 3589     uint8_t *pkt_data = 
data;
 
 3597                    "Error parsing a wavpack block.\n");
 
 3610                    "Error parsing a prores block.\n");
 
 3618     if (!pkt_size && !additional_size)
 
 3637     if (additional_size > 0) {
 
 3640                                                      additional_size + 8);
 
 3645         AV_WB64(side_data, additional_id);
 
 3646         memcpy(side_data + 8, additional, additional_size);
 
 3649     if (discard_padding) {
 
 3660         if (discard_padding > 0) {
 
 3661             AV_WL32(side_data + 4, discard_padding);
 
 3663             AV_WL32(side_data, -discard_padding);
 
 3690                                 int size, int64_t 
pos, uint64_t cluster_time,
 
 3692                                 uint8_t *additional, uint64_t additional_id, 
int additional_size,
 
 3693                                 int64_t cluster_pos, int64_t discard_padding)
 
 3701     uint32_t lace_size[256];
 
 3702     int n, 
flags, laces = 0;
 
 3704     int trust_default_duration;
 
 3716     if (!track || 
size < 3)
 
 3719     if (!(st = track->
stream)) {
 
 3721                "No stream associated to TrackNumber %"PRIu64
". " 
 3722                "Ignoring Block with this TrackNumber.\n", num);
 
 3728     if (block_duration > INT64_MAX)
 
 3729         block_duration = INT64_MAX;
 
 3738     if (cluster_time != (uint64_t) -1 &&
 
 3739         (block_time >= 0 || cluster_time >= -block_time)) {
 
 3740         uint64_t timecode_cluster_in_track_tb = (
double) cluster_time / track->
time_scale;
 
 3743             timecode < track->end_timecode)
 
 3761         else if (!
ffstream(st)->skip_to_keyframe) {
 
 3768                                &pb.
pub, lace_size, &laces);
 
 3779                 trust_default_duration = 0;
 
 3783     if (!block_duration && trust_default_duration)
 
 3786     if (cluster_time != (uint64_t)-1 && (block_time >= 0 || cluster_time >= -block_time))
 
 3790     for (n = 0; n < laces; n++) {
 
 3791         int64_t lace_duration = block_duration*(n+1) / laces - block_duration*n / laces;
 
 3792         uint8_t *out_data = 
data;
 
 3817                                         timecode, lace_duration,
 
 3827                                        additional, additional_id, additional_size,
 
 3834             timecode = lace_duration ? timecode + lace_duration : 
AV_NOPTS_VALUE;
 
 3866         if (res >= 0 && 
block->bin.size > 0) {
 
 3868             uint8_t* additional = 
block->additional.size > 0 ?
 
 3875                                        block->additional.size, cluster->
pos,
 
 3876                                        block->discard_padding);
 
 3886                        "end of segment.\n");
 
 3918                               int64_t timestamp, 
int flags)
 
 3922     AVStream *st = 
s->streams[stream_index];
 
 4001 #if CONFIG_WEBM_DASH_MANIFEST_DEMUXER 
 4003     int64_t start_time_ns;
 
 4004     int64_t end_time_ns;
 
 4005     int64_t start_offset;
 
 4013 static CueDesc get_cue_desc(
AVFormatContext *
s, int64_t ts, int64_t cues_start) {
 
 4022         return (CueDesc) {-1, -1, -1, -1};
 
 4023     for (
i = 1; 
i < nb_index_entries; 
i++) {
 
 4024         if (index_entries[
i - 1].timestamp * matroska->
time_scale <= ts &&
 
 4025             index_entries[
i].timestamp * matroska->
time_scale > ts) {
 
 4032     if (
i != nb_index_entries - 1) {
 
 4051     int64_t cluster_pos, before_pos;
 
 4064         uint64_t cluster_id, cluster_length;
 
 4070         if (read < 0 || cluster_id != 0xF43B675) 
 
 4084         cluster_pos += 4 + read + cluster_length;
 
 4097 static int buffer_size_after_time_downloaded(int64_t time_ns, 
double search_sec, int64_t 
bps,
 
 4098                                              double min_buffer, 
double* 
buffer,
 
 4102     double nano_seconds_per_second = 1000000000.0;
 
 4103     double time_sec = time_ns / nano_seconds_per_second;
 
 4105     int64_t time_to_search_ns = (int64_t)(search_sec * nano_seconds_per_second);
 
 4106     int64_t end_time_ns = time_ns + time_to_search_ns;
 
 4107     double sec_downloaded = 0.0;
 
 4108     CueDesc desc_curr = get_cue_desc(
s, time_ns, cues_start);
 
 4109     if (desc_curr.start_time_ns == -1)
 
 4111     *sec_to_download = 0.0;
 
 4114     if (time_ns > desc_curr.start_time_ns) {
 
 4115       int64_t cue_nano = desc_curr.end_time_ns - time_ns;
 
 4116       double percent = (
double)(cue_nano) / (desc_curr.end_time_ns - desc_curr.start_time_ns);
 
 4117       double cueBytes = (desc_curr.end_offset - desc_curr.start_offset) * percent;
 
 4118       double timeToDownload = (cueBytes * 8.0) / 
bps;
 
 4120       sec_downloaded += (cue_nano / nano_seconds_per_second) - timeToDownload;
 
 4121       *sec_to_download += timeToDownload;
 
 4124       if (desc_curr.end_time_ns >= end_time_ns) {
 
 4125           double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
 
 4126           double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
 
 4127           sec_downloaded = percent_to_sub * sec_downloaded;
 
 4128           *sec_to_download = percent_to_sub * *sec_to_download;
 
 4131       if ((sec_downloaded + *
buffer) <= min_buffer) {
 
 4136       desc_curr = get_cue_desc(
s, desc_curr.end_time_ns, cues_start);
 
 4139     while (desc_curr.start_time_ns != -1) {
 
 4140         int64_t desc_bytes = desc_curr.end_offset - desc_curr.start_offset;
 
 4141         int64_t desc_ns = desc_curr.end_time_ns - desc_curr.start_time_ns;
 
 4142         double desc_sec = desc_ns / nano_seconds_per_second;
 
 4143         double bits = (desc_bytes * 8.0);
 
 4144         double time_to_download = 
bits / 
bps;
 
 4146         sec_downloaded += desc_sec - time_to_download;
 
 4147         *sec_to_download += time_to_download;
 
 4149         if (desc_curr.end_time_ns >= end_time_ns) {
 
 4150             double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second;
 
 4151             double percent_to_sub = search_sec / (desc_end_time_sec - time_sec);
 
 4152             sec_downloaded = percent_to_sub * sec_downloaded;
 
 4153             *sec_to_download = percent_to_sub * *sec_to_download;
 
 4155             if ((sec_downloaded + *
buffer) <= min_buffer)
 
 4160         if ((sec_downloaded + *
buffer) <= min_buffer) {
 
 4165         desc_curr = get_cue_desc(
s, desc_curr.end_time_ns, cues_start);
 
 4178 static int64_t webm_dash_manifest_compute_bandwidth(
AVFormatContext *
s, int64_t cues_start)
 
 4183     double bandwidth = 0.0;
 
 4186         int64_t prebuffer_ns = 1000000000;
 
 4188         double nano_seconds_per_second = 1000000000.0;
 
 4189         int64_t prebuffered_ns = time_ns + prebuffer_ns;
 
 4190         double prebuffer_bytes = 0.0;
 
 4191         int64_t temp_prebuffer_ns = prebuffer_ns;
 
 4192         int64_t pre_bytes, pre_ns;
 
 4193         double pre_sec, prebuffer, bits_per_second;
 
 4194         CueDesc desc_beg = get_cue_desc(
s, time_ns, cues_start);
 
 4197         CueDesc desc_end = desc_beg;
 
 4201         while (desc_end.start_time_ns != -1 && desc_end.end_time_ns < prebuffered_ns) {
 
 4203             prebuffer_bytes += desc_end.end_offset - desc_end.start_offset;
 
 4204             temp_prebuffer_ns -= desc_end.end_time_ns - desc_end.start_time_ns;
 
 4205             desc_end = get_cue_desc(
s, desc_end.end_time_ns, cues_start);
 
 4207         if (desc_end.start_time_ns == -1) {
 
 4211             bits_per_second = 0.0;
 
 4215             pre_bytes = desc_end.end_offset - desc_end.start_offset;
 
 4216             pre_ns = desc_end.end_time_ns - desc_end.start_time_ns;
 
 4219             pre_sec = pre_ns / nano_seconds_per_second;
 
 4221                 pre_bytes * ((temp_prebuffer_ns / nano_seconds_per_second) / pre_sec);
 
 4223             prebuffer = prebuffer_ns / nano_seconds_per_second;
 
 4226             bits_per_second = 0.0;
 
 4228                 int64_t desc_bytes = desc_end.end_offset - desc_beg.start_offset;
 
 4229                 int64_t desc_ns = desc_end.end_time_ns - desc_beg.start_time_ns;
 
 4230                 double desc_sec, calc_bits_per_second, percent, mod_bits_per_second;
 
 4231                 if (desc_bytes <= 0)
 
 4234                 desc_sec = desc_ns / nano_seconds_per_second;
 
 4235                 calc_bits_per_second = (desc_bytes * 8) / desc_sec;
 
 4238                 percent = (desc_bytes - prebuffer_bytes) / desc_bytes;
 
 4239                 mod_bits_per_second = calc_bits_per_second * percent;
 
 4241                 if (prebuffer < desc_sec) {
 
 4247                     int64_t 
bps = (int64_t)(mod_bits_per_second) + 1;
 
 4248                     const double min_buffer = 0.0;
 
 4249                     double buffer = prebuffer;
 
 4250                     double sec_to_download = 0.0;
 
 4252                     int rv = buffer_size_after_time_downloaded(prebuffered_ns, search_sec, 
bps,
 
 4253                                                                min_buffer, &
buffer, &sec_to_download,
 
 4257                     } 
else if (rv == 0) {
 
 4263                 desc_end = get_cue_desc(
s, desc_end.end_time_ns, cues_start);
 
 4264             } 
while (desc_end.start_time_ns != -1);
 
 4266         if (bandwidth < bits_per_second) bandwidth = bits_per_second;
 
 4268     return (int64_t)bandwidth;
 
 4280     int64_t cues_start = -1, cues_end = -1, before_pos, bandwidth;
 
 4289     if (
i >= seekhead_list->
nb_elem) 
return -1;
 
 4293     if (
avio_seek(matroska->
ctx->
pb, cues_start, SEEK_SET) == cues_start) {
 
 4297         uint64_t cues_length, cues_id;
 
 4305         cues_end = cues_start + 4 + bytes_read + cues_length - 1;
 
 4308     if (cues_start == -1 || cues_end == -1) 
return -1;
 
 4324     if (cues_start <= init_range)
 
 4328     bandwidth = webm_dash_manifest_compute_bandwidth(
s, cues_start);
 
 4329     if (bandwidth < 0) 
return -1;
 
 4345     bprint.str[--bprint.len] = 
'\0';
 
 4384     buf = strrchr(
s->url, 
'/');
 
 4393         ret = webm_dash_manifest_cues(
s, init_range);
 
 4413 #define OFFSET(x) offsetof(MatroskaDemuxContext, x) 
 4428     .
name           = 
"webm_dash_manifest",
 
 4440     .
name           = 
"matroska,webm",
 
 4442     .extensions     = 
"mkv,mk3d,mka,mks,webm",
 
 4450     .mime_type      = 
"audio/webm,audio/x-matroska,video/webm,video/x-matroska" 
  
#define MATROSKA_ID_ENCODINGENCRYPTION
 
AVChapter * avpriv_new_chapter(AVFormatContext *s, int64_t id, AVRational time_base, int64_t start, int64_t end, const char *title)
Add a new chapter.
 
#define MATROSKA_ID_TAGTARGETS_ATTACHUID
 
#define MATROSKA_ID_CHAPCOUNTRY
 
static EbmlSyntax matroska_block_addition_mapping[5]
 
static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length, int64_t pos)
 
static int ebml_read_binary(AVIOContext *pb, int length, int64_t pos, EbmlBin *bin)
 
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
 
#define MATROSKA_ID_VIDEODISPLAYUNIT
 
static const CodecMime mkv_image_mime_tags[]
 
static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf, int size, int type, AVIOContext *pb, uint32_t lace_size[256], int *laces)
 
#define MATROSKA_ID_CODECPRIVATE
 
#define MATROSKA_ID_TRACKNUMBER
 
#define MATROSKA_ID_TRACKFLAGVISUALIMPAIRED
 
static void bit_depth(AudioStatsContext *s, uint64_t mask, uint64_t imask, AVRational *depth)
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_ROW_INTERLEAVED_RL
 
#define AV_LOG_WARNING
Something somehow does not look correct.
 
#define AV_BPRINT_SIZE_UNLIMITED
 
#define MATROSKA_ID_CHAPSTRING
 
#define MATROSKA_ID_ENCODINGSIGHASHALGO
 
int avpriv_packet_list_put(PacketList *packet_buffer, AVPacket *pkt, int(*copy)(AVPacket *dst, const AVPacket *src), int flags)
Append an AVPacket to the list.
 
#define MATROSKA_ID_TAGTARGETS
 
AVSphericalProjection
Projection of the video surface(s) on a sphere.
 
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
 
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
 
#define MATROSKA_ID_CLUSTERTIMECODE
 
int avpriv_packet_list_get(PacketList *pkt_buffer, AVPacket *pkt)
Remove the oldest AVPacket in the list and return it.
 
static EbmlSyntax matroska_attachment[]
 
static EbmlSyntax ebml_header[]
 
#define MATROSKA_ID_TITLE
 
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
 
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
 
static int matroska_parse_tracks(AVFormatContext *s)
 
enum AVMediaType codec_type
General type of the encoded data.
 
enum AVSphericalProjection projection
Projection type.
 
MatroskaTrackOperation operation
 
uint32_t bound_bottom
Distance from the bottom edge.
 
#define MATROSKA_ID_CODECDECODEALL
 
void ff_rm_reorder_sipr_data(uint8_t *buf, int sub_packet_h, int framesize)
Perform 4-bit block reordering for SIPR data.
 
#define MATROSKA_ID_VIDEOCOLORMASTERINGMETA
 
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
 
static int ebml_read_ascii(AVIOContext *pb, int size, const char *default_value, char **str)
 
#define MATROSKA_ID_CHAPTERFLAGENABLED
 
static int matroska_parse_prores(MatroskaTrack *track, uint8_t **data, int *size)
 
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
 
static int segment_start(AVFormatContext *s, int write_header)
 
#define EBML_ID_EBMLMAXSIZELENGTH
 
static float sub(float src0, float src1)
 
enum AVColorSpace color_space
 
#define MATROSKA_ID_TRACKOPERATION
 
static int ebml_read_num(MatroskaDemuxContext *matroska, AVIOContext *pb, int max_size, uint64_t *number, int eof_forbidden)
 
@ MATROSKA_VIDEO_FIELDORDER_PROGRESSIVE
 
#define MATROSKA_ID_TRACKFLAGTEXTDESCRIPTIONS
 
#define AVERROR_EOF
End of file.
 
uint8_t * data
The data buffer.
 
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
 
#define MATROSKA_ID_VIDEOPIXELWIDTH
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_CHECKERBOARD_LR
 
#define MATROSKA_ID_AUDIOSAMPLINGFREQ
 
static av_always_inline double av_int2double(uint64_t i)
Reinterpret a 64-bit integer as a double.
 
static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos)
 
@ MATROSKA_VIDEO_PROJECTION_TYPE_RECTANGULAR
 
static EbmlSyntax matroska_track_combine_planes[2]
 
#define MATROSKA_ID_DISCARDPADDING
 
@ MATROSKA_VIDEO_FIELDORDER_BB
 
static EbmlSyntax matroska_cluster_parsing[8]
 
const struct EbmlSyntax * n
 
#define MATROSKA_ID_EDITIONFLAGORDERED
 
#define MATROSKA_ID_DURATION
 
char * av_asprintf(const char *fmt,...)
 
#define MATROSKA_ID_VIDEOCOLORCHROMASITINGVERT
 
static int matroska_read_header(AVFormatContext *s)
 
static MatroskaTrack * matroska_find_track_by_num(MatroskaDemuxContext *matroska, uint64_t num)
 
#define MATROSKA_ID_VIDEOCOLORPRIMARIES
 
static EbmlSyntax matroska_chapters[2]
 
@ MATROSKA_VIDEO_DISPLAYUNIT_PIXELS
 
#define MATROSKA_ID_ENCODINGSIGNATURE
 
#define MATROSKA_ID_SEGMENT
 
#define MATROSKA_ID_BLKADDIDTYPE
 
unsigned MaxCLL
Max content light level (cd/m^2).
 
#define MATROSKA_ID_CHAPTERS
 
#define MATROSKA_ID_VIDEOCOLOR_BY
 
#define MATROSKA_ID_BLOCKDURATION
 
@ AVCOL_RANGE_JPEG
Full range content.
 
#define MATROSKA_ID_VIDEOCOLORRANGE
 
#define MATROSKA_ID_BLOCK
 
void av_display_matrix_flip(int32_t matrix[9], int hflip, int vflip)
Flip the input matrix horizontally and/or vertically.
 
#define MATROSKA_ID_TRACKDEFAULTDURATION
 
static EbmlSyntax matroska_track_encodings[2]
 
static EbmlSyntax matroska_tags[2]
 
#define MATROSKA_ID_TAGTARGETS_TYPE
 
int seek_preroll
Audio only.
 
static int matroska_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
 
@ AV_PKT_DATA_PALETTE
An AV_PKT_DATA_PALETTE side data packet contains exactly AVPALETTE_SIZE bytes worth of palette.
 
AVRational avg_frame_rate
Average framerate.
 
static int matroska_read_close(AVFormatContext *s)
 
#define MATROSKA_ID_ENCODINGSCOPE
 
@ MATROSKA_VIDEO_INTERLACE_FLAG_INTERLACED
 
#define MATROSKA_ID_DATEUTC
 
#define MATROSKA_ID_VIDEOCOLORCHROMASUBHORZ
 
int error
contains the error code or 0 if no error happened
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_BOTH_EYES_BLOCK_LR
 
#define AV_LOG_VERBOSE
Detailed information.
 
#define MATROSKA_ID_VIDEOPIXELCROPT
 
static int matroska_parse_block(MatroskaDemuxContext *matroska, AVBufferRef *buf, uint8_t *data, int size, int64_t pos, uint64_t cluster_time, uint64_t block_duration, int is_keyframe, uint8_t *additional, uint64_t additional_id, int additional_size, int64_t cluster_pos, int64_t discard_padding)
 
#define MATROSKA_ID_VIDEOPIXELCROPB
 
void av_display_rotation_set(int32_t matrix[9], double angle)
Initialize a transformation matrix describing a pure clockwise rotation by the specified angle (in de...
 
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
 
#define MATROSKA_ID_VIDEOCOLORCBSUBVERT
 
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
 
@ AV_SPHERICAL_EQUIRECTANGULAR_TILE
Video represents a portion of a sphere mapped on a flat surface using equirectangular projection.
 
static int mkv_parse_video_projection(AVStream *st, const MatroskaTrack *track, void *logctx)
 
@ MATROSKA_COLOUR_CHROMASITINGHORZ_UNDETERMINED
 
int buf_size
Size of buf except extra allocated bytes.
 
enum AVChannelOrder order
Channel order used in this layout.
 
AVBufferRef * av_buffer_ref(const AVBufferRef *buf)
Create a new reference to an AVBuffer.
 
static EbmlSyntax matroska_blockadditions[2]
 
#define MATROSKA_ID_CUETIME
 
@ AV_PKT_DATA_SPHERICAL
This side data should be associated with a video stream and corresponds to the AVSphericalMapping str...
 
static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt)
 
#define MATROSKA_ID_CUERELATIVEPOSITION
 
int nb_channels
Number of channels in this layout.
 
@ AV_SPHERICAL_EQUIRECTANGULAR
Video represents a sphere mapped on a flat surface using equirectangular projection.
 
#define MATROSKA_ID_CHAPLANG
 
static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, void *data)
 
#define MATROSKA_ID_CUEDURATION
 
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
 
void avpriv_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp)
Update cur_dts of all streams based on the given timestamp and AVStream.
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_ROW_INTERLEAVED_LR
 
#define MATROSKA_ID_VIDEOCOLORBITSPERCHANNEL
 
static EbmlSyntax matroska_segment[9]
 
static void matroska_metadata_creation_time(AVDictionary **metadata, int64_t date_utc)
 
@ MATROSKA_VIDEO_DISPLAYUNIT_UNKNOWN
 
Content light level needed by to transmit HDR over HDMI (CTA-861.3).
 
#define MATROSKA_ID_VIDEOCOLOR_LUMINANCEMAX
 
#define update_pos(td, mb_y, mb_x)
 
static EbmlSyntax matroska_track_encoding_compression[]
 
enum AVColorPrimaries color_primaries
 
#define MATROSKA_ID_VIDEOCOLOR_WHITEY
 
EbmlList block_addition_mappings
 
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a it should return
 
@ AVCOL_SPC_RESERVED
reserved for future use by ITU-T and ISO/IEC just like 15-255 are
 
static int ebml_read_sint(AVIOContext *pb, int size, int64_t default_value, int64_t *num)
 
static EbmlSyntax ebml_syntax[3]
 
#define MATROSKA_ID_AUDIOOUTSAMPLINGFREQ
 
#define MATROSKA_ID_VIDEOPROJECTIONPRIVATE
 
MatroskaCluster current_cluster
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_MONO
 
#define MATROSKA_ID_ENCODINGSIGALGO
 
#define MATROSKA_ID_VIDEOASPECTRATIO
 
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
 
MatroskaLevel1Element level1_elems[64]
 
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
 
#define MATROSKA_ID_CHAPTERDISPLAY
 
static void inflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
 
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
 
#define MATROSKA_ID_TRACKUID
 
#define MATROSKA_ID_ENCODINGSIGKEYID
 
#define EBML_ID_DOCTYPEVERSION
 
static av_cold int read_close(AVFormatContext *ctx)
 
@ MATROSKA_COLOUR_CHROMASITINGVERT_NB
 
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
 
const char *const ff_matroska_video_stereo_mode[MATROSKA_VIDEO_STEREOMODE_TYPE_NB]
 
static int matroska_probe(const AVProbeData *p)
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_CHECKERBOARD_RL
 
static EbmlSyntax matroska_segments[]
 
static const char *const matroska_doctypes[]
 
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
 
#define MATROSKA_ID_VIDEOALPHAMODE
 
@ AV_PKT_DATA_DISPLAYMATRIX
This side data contains a 3x3 transformation matrix describing an affine transformation that needs to...
 
@ AV_CODEC_ID_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
 
static int mkv_parse_video_color(AVStream *st, const MatroskaTrack *track)
 
MatroskaMasteringMeta mastering_meta
 
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
 
#define MATROSKA_ID_VIDEOCOLOR_WHITEX
 
@ MATROSKA_TRACK_TYPE_METADATA
 
static EbmlSyntax matroska_tag[3]
 
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
 
@ MATROSKA_VIDEO_FIELDORDER_TT
 
MatroskaLevel levels[EBML_MAX_DEPTH]
 
enum AVColorTransferCharacteristic color_trc
 
#define MATROSKA_ID_BLKADDIDNAME
 
#define MATROSKA_ID_BLOCKADDITIONAL
 
static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, void *data)
 
unsigned int avio_rb32(AVIOContext *s)
 
@ AV_PKT_DATA_WEBVTT_SETTINGS
The optional settings (rendering instructions) that immediately follow the timestamp specifier of a W...
 
static int matroska_parse_seekhead_entry(MatroskaDemuxContext *matroska, int64_t pos)
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
 
#define MATROSKA_ID_TRACKCONTENTENCODING
 
#define FF_ARRAY_ELEMS(a)
 
uint64_t bits_per_channel
 
#define MATROSKA_ID_TAGDEFAULT_BUG
 
#define MATROSKA_ID_CODECDOWNLOADURL
 
#define MATROSKA_ID_VIDEOFIELDORDER
 
static EbmlSyntax matroska_info[]
 
#define MATROSKA_ID_VIDEOPIXELCROPR
 
@ MATROSKA_COLOUR_CHROMASITINGHORZ_NB
 
static EbmlSyntax matroska_index_entry[3]
 
#define EBML_ID_EBMLMAXIDLENGTH
 
static const uint16_t mask[17]
 
int frame_size
Audio only.
 
static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
 
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
 
int ff_add_attached_pic(AVFormatContext *s, AVStream *st, AVIOContext *pb, AVBufferRef **buf, int size)
Add an attached pic to an AVStream.
 
static int ebml_read_float(AVIOContext *pb, int size, double default_value, double *num)
 
void * av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
Reallocate the given buffer if it is not large enough, otherwise do nothing.
 
static MatroskaLevel1Element * matroska_find_level1_elem(MatroskaDemuxContext *matroska, uint32_t id, int64_t pos)
 
union CountedElement::@269 el
 
@ MATROSKA_COLOUR_CHROMASITINGVERT_UNDETERMINED
 
#define MATROSKA_ID_FILEUID
 
@ MATROSKA_VIDEO_INTERLACE_FLAG_PROGRESSIVE
 
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
 
#define MATROSKA_ID_VIDEODISPLAYWIDTH
 
@ AV_PKT_DATA_MASTERING_DISPLAY_METADATA
Mastering display metadata (based on SMPTE-2086:2014).
 
int flags
Flags modifying the (de)muxer behaviour.
 
@ MATROSKA_VIDEO_FIELDORDER_BT
 
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
 
@ AV_CHANNEL_ORDER_UNSPEC
Only the channel count is specified, without any further information about the channel order.
 
uint32_t bound_top
Distance from the top edge.
 
#define MATROSKA_ID_TAGNAME
 
#define MATROSKA_ID_TIMECODESCALE
 
static EbmlSyntax matroska_cluster_enter[]
 
#define MATROSKA_ID_CLUSTERPOSITION
 
static int matroska_parse_frame(MatroskaDemuxContext *matroska, MatroskaTrack *track, AVStream *st, AVBufferRef *buf, uint8_t *data, int pkt_size, uint64_t timecode, uint64_t lace_duration, int64_t pos, int is_keyframe, uint8_t *additional, uint64_t additional_id, int additional_size, int64_t discard_padding)
 
int64_t timestamp
Timestamp in AVStream.time_base units, preferably the time from which on correctly decoded frames are...
 
#define av_assert0(cond)
assert() equivalent, that is always enabled.
 
#define MATROSKA_ID_CUETRACKPOSITION
 
#define MATROSKA_ID_SEEKENTRY
 
static int matroska_decode_buffer(uint8_t **buf, int *buf_size, MatroskaTrack *track)
 
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
 
#define MATROSKA_ID_TRACKTYPE
 
int64_t data_offset
offset of the first packet
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_COL_INTERLEAVED_LR
 
#define MATROSKA_ID_SEGMENTUID
 
static EbmlSyntax matroska_track[33]
 
#define MATROSKA_ID_TRACKBLKADDMAPPING
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
 
static EbmlSyntax matroska_track_video_projection[]
 
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
 
#define MATROSKA_ID_AUDIOCHANNELS
 
#define MATROSKA_ID_BLKADDIDVALUE
 
uint64_t chroma_siting_vert
 
#define MATROSKA_ID_VIDEOSTEREOMODE
 
static void matroska_clear_queue(MatroskaDemuxContext *matroska)
 
#define MATROSKA_ID_VIDEOCOLORSPACE
 
#define MATROSKA_ID_TRACKNAME
 
enum AVStreamParseType need_parsing
 
static void matroska_convert_tag(AVFormatContext *s, EbmlList *list, AVDictionary **metadata, char *prefix)
 
#define EBML_ID_DOCTYPEREADVERSION
 
@ AVDISCARD_ALL
discard all
 
#define MATROSKA_ID_CODECSTATE
 
#define MATROSKA_ID_TRACKFLAGHEARINGIMPAIRED
 
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
 
AVCodecParameters * codecpar
Codec parameters associated with this stream.
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_TOP_BOTTOM
 
#define LIBAVUTIL_VERSION_INT
 
#define MATROSKA_ID_ENCODINGENCALGO
 
static int read_header(FFV1Context *f)
 
#define MATROSKA_ID_BLOCKGROUP
 
#define MATROSKA_ID_VIDEOCOLOR_LUMINANCEMIN
 
Describe the class of an AVClass context structure.
 
and forward the result(frame or status change) to the corresponding input. If nothing is possible
 
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
 
#define MATROSKA_ID_ATTACHMENTS
 
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
 
#define MATROSKA_ID_CHAPTERATOM
 
static EbmlSyntax * ebml_parse_id(EbmlSyntax *syntax, uint32_t id)
 
#define MATROSKA_ID_TRACKCONTENTENCODINGS
 
void * av_realloc(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory.
 
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
 
static void matroska_parse_cues(MatroskaDemuxContext *matroska)
 
@ MATROSKA_TRACK_TYPE_AUDIO
 
const AVInputFormat ff_matroska_demuxer
 
#define MATROSKA_ID_EDITIONUID
 
#define MATROSKA_ID_TRACKFLAGORIGINAL
 
static int matroska_reset_status(MatroskaDemuxContext *matroska, uint32_t id, int64_t position)
 
static void matroska_execute_seekhead(MatroskaDemuxContext *matroska)
 
static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska, AVIOContext *pb, int64_t *num)
 
#define MATROSKA_ID_ENCODINGORDER
 
static av_always_inline void flac_parse_block_header(const uint8_t *block_header, int *last, int *type, int *size)
Parse the metadata block parameters from the header.
 
Rational number (pair of numerator and denominator).
 
static int matroska_parse_webvtt(MatroskaDemuxContext *matroska, MatroskaTrack *track, AVStream *st, uint8_t *data, int data_len, uint64_t timecode, uint64_t duration, int64_t pos)
 
#define MATROSKA_ID_WRITINGAPP
 
int av_stream_add_side_data(AVStream *st, enum AVPacketSideDataType type, uint8_t *data, size_t size)
Wrap an existing array as stream side data.
 
#define MATROSKA_ID_VIDEOCOLOR_GY
 
static EbmlSyntax matroska_track_operation[2]
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_BOTTOM_TOP
 
const char * av_default_item_name(void *ptr)
Return the context name.
 
uint64_t avio_rb64(AVIOContext *s)
 
AVIOContext * pb
I/O context.
 
#define MATROSKA_ID_SIMPLETAG
 
#define MATROSKA_ID_TRACKPLANEUID
 
#define MATROSKA_ID_VIDEOPROJECTION
 
This structure contains the data a format has to probe a file.
 
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining list
 
#define MATROSKA_ID_SEEKID
 
#define FLAC_STREAMINFO_SIZE
 
#define MATROSKA_ID_CHAPTERTIMESTART
 
const char *const ff_matroska_video_stereo_plane[MATROSKA_VIDEO_STEREO_PLANE_COUNT]
 
const AVCodecTag ff_codec_movvideo_tags[]
 
#define MATROSKA_ID_CUEBLOCKNUMBER
 
uint64_t flag_hearingimpaired
 
@ MATROSKA_TRACK_TYPE_VIDEO
 
#define AV_EF_EXPLODE
abort decoding on minor error detection
 
AVChannelLayout ch_layout
Audio only.
 
#define MATROSKA_ID_FILEMIMETYPE
 
#define MATROSKA_ID_VIDEODISPLAYHEIGHT
 
#define MATROSKA_ID_TRACKAUDIO
 
@ AVCOL_RANGE_UNSPECIFIED
 
static EbmlSyntax matroska_index_pos[]
 
const AVCodecTag ff_codec_movaudio_tags[]
 
MatroskaTrackCompression compression
 
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
 
int sample_rate
Audio only.
 
AVBufferRef * av_buffer_create(uint8_t *data, size_t size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
 
const uint8_t ff_log2_tab[256]
 
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
 
AVCodecID
Identify the syntax and semantics of the bitstream.
 
static int mkv_field_order(MatroskaDemuxContext *matroska, uint64_t field_order)
 
#define MATROSKA_ID_VIDEOCOLORMAXCLL
 
#define MATROSKA_ID_TRACKENTRY
 
int extradata_size
Size of the extradata content in bytes.
 
static const struct @328 planes[]
 
static EbmlSyntax matroska_track_encoding_encryption[]
 
uint64_t default_duration
 
static int ebml_read_uint(AVIOContext *pb, int size, uint64_t default_value, uint64_t *num)
 
#define MATROSKA_ID_TAGDEFAULT
 
@ MATROSKA_TRACK_ENCODING_COMP_BZLIB
 
const OptionDef options[]
 
#define MATROSKA_ID_AUDIOBITDEPTH
 
uint64_t flag_visualimpaired
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_LEFT_RIGHT
 
#define MATROSKA_ID_TRACKFLAGDEFAULT
 
int av_lzo1x_decode(void *out, int *outlen, const void *in, int *inlen)
Decodes LZO 1x compressed data.
 
@ AV_SPHERICAL_CUBEMAP
Video frame is split into 6 faces of a cube, and arranged on a 3x2 layout.
 
#define MATROSKA_ID_ENCODINGCOMPALGO
 
#define MATROSKA_ID_TRACKFLAGCOMMENTARY
 
uint64_t flag_textdescriptions
 
#define MATROSKA_ID_TRACKFLAGLACING
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
 
AVPacket * parse_pkt
The generic code uses this as a temporary packet to parse packets or for muxing, especially flushing.
 
uint64_t matrix_coefficients
 
#define MATROSKA_ID_VIDEOCOLOR_GX
 
static int mkv_create_display_matrix(AVStream *st, const MatroskaTrackVideoProjection *proj, void *logctx)
 
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
 
void avpriv_packet_list_free(PacketList *pkt_buf)
Wipe the list and unref all the packets in it.
 
static void matroska_convert_tags(AVFormatContext *s)
 
uint32_t bound_right
Distance from the right edge.
 
MatroskaTrackEncryption encryption
 
#define MATROSKA_ID_TRACKFLAGENABLED
 
#define MATROSKA_ID_FILEDATA
 
uint64_t max_block_additional_id
 
#define MATROSKA_ID_VIDEOPROJECTIONPOSEPITCH
 
@ MATROSKA_VIDEO_FIELDORDER_UNDETERMINED
 
#define MATROSKA_ID_BLOCKMORE
 
int ff_get_qtpalette(int codec_id, AVIOContext *pb, uint32_t *palette)
Retrieve the palette (or "color table" in QuickTime terms), either from the video sample description,...
 
#define AV_NOPTS_VALUE
Undefined timestamp value.
 
#define MKBETAG(a, b, c, d)
 
static void mkv_stereo_mode_display_mul(int stereo_mode, int *h_width, int *h_height)
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
 
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
 
#define MATROSKA_ID_VIDEOCOLORMAXFALL
 
int ff_isom_parse_dvcc_dvvc(AVFormatContext *s, AVStream *st, const uint8_t *buf_ptr, uint64_t size)
 
static EbmlSyntax matroska_attachments[2]
 
static const struct TransferCharacteristics transfer_characteristics[AVCOL_TRC_NB]
 
#define EBML_UNKNOWN_LENGTH
 
#define MATROSKA_ID_VIDEOCOLORCBSUBHORZ
 
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
 
#define INITIALIZATION_RANGE
 
#define MATROSKA_ID_POINTENTRY
 
static const uint8_t header[24]
 
#define MATROSKA_ID_BLKADDIDEXTRADATA
 
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
 
int avio_r8(AVIOContext *s)
 
static EbmlSyntax matroska_simpletag[]
 
uint32_t padding
Number of pixels to pad from the edge of each cube face.
 
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
 
#define MATROSKA_ID_ENCODINGTYPE
 
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
 
union EbmlSyntax::@270 def
 
@ AV_PKT_DATA_CONTENT_LIGHT_LEVEL
Content light level (based on CTA-861.3).
 
int flags
A combination of AV_PKT_FLAG values.
 
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
 
uint64_t codec_delay_in_track_tb
 
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
 
#define MATROSKA_ID_VIDEOPIXELHEIGHT
 
uint64_t chroma_siting_horz
 
#define MATROSKA_ID_VIDEOFRAMERATE
 
#define AV_LOG_INFO
Standard information.
 
static int matroska_aac_sri(int samplerate)
 
#define MATROSKA_ID_MUXINGAPP
 
#define MATROSKA_ID_EDITIONFLAGDEFAULT
 
int error_recognition
Error recognition; higher values will detect more errors but may misdetect some more or less valid pa...
 
#define MATROSKA_ID_TRACKPLANETYPE
 
int skip_to_keyframe
Indicates that everything up to the next keyframe should be discarded.
 
int ffio_limit(AVIOContext *s, int size)
 
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel layout
 
#define MATROSKA_ID_CODECINFOURL
 
#define MATROSKA_ID_FILEDESC
 
#define MATROSKA_ID_VIDEOPROJECTIONTYPE
 
#define MATROSKA_ID_FILENAME
 
#define AV_BASE64_SIZE(x)
Calculate the output size needed to base64-encode x bytes to a null-terminated string.
 
int32_t roll
Rotation around the forward vector [-180, 180].
 
#define MATROSKA_ID_CODECID
 
static EbmlSyntax matroska_track_video[19]
 
#define i(width, name, range_min, range_max)
 
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
 
#define AV_LZO_OUTPUT_PADDING
 
static EbmlSyntax matroska_track_audio[]
 
static EbmlSyntax matroska_tagtargets[]
 
@ MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP
 
int av_channel_layout_check(const AVChannelLayout *channel_layout)
Check whether a channel layout is valid, i.e.
 
#define AV_TIME_BASE
Internal time base represented as integer.
 
#define MATROSKA_ID_CUECLUSTERPOSITION
 
@ MATROSKA_TRACK_ENCODING_COMP_ZLIB
 
int block_align
Audio only.
 
#define MATROSKA_ID_CHAPTERPHYSEQUIV
 
MatroskaTrackVideoProjection projection
 
#define av_malloc_array(a, b)
 
void ffio_init_context(FFIOContext *s, unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
 
#define MATROSKA_ID_CUETRACK
 
#define MATROSKA_ID_SEEKPOSITION
 
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
 
#define MATROSKA_ID_CLUSTER
 
#define MATROSKA_ID_TRACKLANGUAGE
 
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
 
@ AVMEDIA_TYPE_ATTACHMENT
Opaque data information usually sparse.
 
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
 
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
 
#define MATROSKA_ID_VIDEOFLAGINTERLACED
 
static EbmlSyntax matroska_chapter[6]
 
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
 
const AVMetadataConv ff_mkv_metadata_conv[]
 
@ AV_PKT_DATA_SKIP_SAMPLES
Recommmends skipping the specified number of samples.
 
enum AVColorRange color_range
Video only.
 
static int get_qt_codec(MatroskaTrack *track, uint32_t *fourcc, enum AVCodecID *codec_id)
 
int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par, int size, int big_endian)
 
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
 
#define MATROSKA_ID_EDITIONFLAGHIDDEN
 
#define MATROSKA_ID_CHAPTERUID
 
unsigned int alloc_elem_size
 
static EbmlSyntax matroska_index[2]
 
enum AVFieldOrder field_order
Video only.
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_RIGHT_LEFT
 
static EbmlSyntax matroska_mastering_meta[]
 
#define MATROSKA_ID_VIDEOPROJECTIONPOSEYAW
 
Undefined Behavior In the C language
 
static EbmlSyntax matroska_track_video_color[15]
 
FF_ENABLE_DEPRECATION_WARNINGS int av_channel_layout_from_mask(AVChannelLayout *channel_layout, uint64_t mask)
Initialize a native channel layout from a bitmask indicating which channels are present.
 
int disposition
Stream disposition - a combination of AV_DISPOSITION_* flags.
 
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
 
static const CodecMime mkv_mime_tags[]
 
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
 
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
 
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes,...
 
int32_t pitch
Rotation around the right vector [-90, 90].
 
#define MATROSKA_ID_TRACKCOMBINEPLANES
 
static int FUNC() sps(CodedBitstreamContext *ctx, RWContext *rw, H264RawSPS *current)
 
static EbmlSyntax matroska_blockmore[]
 
#define MATROSKA_ID_VIDEOCOLOR_BX
 
#define MATROSKA_ID_TAGSTRING
 
#define MATROSKA_ID_VIDEOCOLORMATRIXCOEFF
 
void av_bprintf(AVBPrint *buf, const char *fmt,...)
 
#define MATROSKA_ID_SIMPLEBLOCK
 
#define MATROSKA_ID_TRACKPLANE
 
#define AV_INPUT_BUFFER_PADDING_SIZE
 
#define MATROSKA_ID_VIDEOPIXELCROPL
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
 
enum AVChromaLocation chroma_location
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_COL_INTERLEAVED_RL
 
#define MATROSKA_ID_CODECNAME
 
static const AVClass webm_dash_class
 
#define MATROSKA_ID_EDITIONENTRY
 
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option keep it simple and lowercase description are in without and describe what they for example set the foo of the bar offset is the offset of the field in your see the OFFSET() macro
 
static const ParseSyntax syntax[]
 
static EbmlSyntax matroska_seekhead_entry[]
 
int index
stream index in AVFormatContext
 
#define MATROSKA_ID_TRACKMAXCACHE
 
static EbmlSyntax matroska_seekhead[2]
 
const AVCodecTag ff_codec_bmp_tags[]
 
static void matroska_add_index_entries(MatroskaDemuxContext *matroska)
 
#define MATROSKA_ID_TRACKMAXBLKADDID
 
static EbmlSyntax matroska_blockgroup[8]
 
#define MATROSKA_ID_TAGTARGETS_TYPEVALUE
 
#define EBML_ID_EBMLVERSION
 
#define MATROSKA_ID_CLUSTERPREVSIZE
 
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
 
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, size_t size)
Allocate new information of a packet.
 
the frame and frame reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFrame structures Several references can point to the same frame buffer
 
const unsigned char ff_sipr_subpk_size[4]
 
#define MATROSKA_ID_TAGLANG
 
static int is_ebml_id_valid(uint32_t id)
 
#define MATROSKA_VIDEO_STEREO_PLANE_COUNT
 
static int mkv_parse_dvcc_dvvc(AVFormatContext *s, AVStream *st, const MatroskaTrack *track, EbmlBin *bin)
 
#define MATROSKA_ID_VIDEOCOLOR
 
static EbmlSyntax matroska_tracks[2]
 
#define MATROSKA_ID_VIDEOCOLORTRANSFERCHARACTERISTICS
 
A Quick Description Of Rate Distortion Theory We want to encode a video
 
#define MATROSKA_ID_VIDEOCOLOR_RX
 
static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t **data, int *size)
 
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
 
@ MATROSKA_TRACK_TYPE_SUBTITLE
 
static av_const int sign_extend(int val, unsigned bits)
 
AVRational r_frame_rate
Real base framerate of the stream.
 
#define AV_LZO_OUTPUT_FULL
decoded data did not fit into output buffer
 
int eof_reached
true if was unable to read due to error or eof
 
char * av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size)
Encode data to base64 and null-terminate.
 
Filter the word “frame” indicates either a video frame or a group of audio samples
 
@ FLAC_METADATA_TYPE_VORBIS_COMMENT
 
#define MATROSKA_ID_VIDEOCOLORCHROMASUBVERT
 
@ MATROSKA_VIDEO_PROJECTION_TYPE_EQUIRECTANGULAR
 
enum AVChromaLocation avcodec_chroma_pos_to_enum(int xpos, int ypos)
Converts swscale x/y chroma position to AVChromaLocation.
 
int64_t duration
Duration of the stream, in AV_TIME_BASE fractional seconds.
 
static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska, MatroskaTrack *track, AVStream *st, uint8_t *data, int size, uint64_t timecode, int64_t pos)
 
int av_buffer_realloc(AVBufferRef **pbuf, size_t size)
Reallocate a given buffer.
 
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
 
#define MATROSKA_ID_VIDEOCOLORCHROMASITINGHORZ
 
@ MATROSKA_TRACK_ENCODING_COMP_LZO
 
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
 
const int ff_mpeg4audio_sample_rates[16]
 
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set that converts the value to a string and stores it.
 
AVSphericalMapping * av_spherical_alloc(size_t *size)
Allocate a AVSphericalVideo structure and initialize its fields to default values.
 
char * av_strdup(const char *s)
Duplicate a string.
 
#define MATROSKA_ID_BLOCKREFERENCE
 
int bits_per_coded_sample
The number of bits per sample in the codedwords.
 
A reference to a data buffer.
 
#define MATROSKA_ID_VIDEOCOLOR_RY
 
@ AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL
Data found in BlockAdditional element of matroska container.
 
@ MATROSKA_VIDEO_FIELDORDER_TB
 
uint32_t bound_left
Distance from the left edge.
 
int ff_mkv_stereo3d_conv(AVStream *st, MatroskaVideoStereoModeType stereo_mode)
 
#define MATROSKA_ID_TRACKVIDEO
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_BOTH_EYES_BLOCK_RL
 
unsigned char * buffer
Start of the buffer.
 
const CodecTags ff_mkv_codec_tags[]
 
#define MATROSKA_ID_TRACKFLAGFORCED
 
@ MATROSKA_VIDEO_STEREOMODE_TYPE_NB
 
#define EBML_ID_EBMLREADVERSION
 
static int matroska_deliver_packet(MatroskaDemuxContext *matroska, AVPacket *pkt)
 
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
 
uint32_t palette[AVPALETTE_COUNT]
 
unsigned MaxFALL
Max average light level per frame (cd/m^2).
 
This structure stores compressed data.
 
#define MATROSKA_ID_ENCODINGENCAESSETTINGS
 
#define MATROSKA_ID_CHAPTERFLAGHIDDEN
 
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
 
#define MATROSKA_ID_ATTACHEDFILE
 
int64_t pos
byte position in stream, -1 if unknown
 
#define MATROSKA_ID_TRACKMINCACHE
 
#define MATROSKA_ID_CODECDELAY
 
uint64_t transfer_characteristics
 
uint8_t * av_stream_new_side_data(AVStream *st, enum AVPacketSideDataType type, size_t size)
Allocate new information from stream.
 
static EbmlSyntax matroska_track_plane[]
 
#define MATROSKA_ID_ENCODINGCOMPRESSION
 
#define flags(name, subs,...)
 
#define MATROSKA_ID_TAGTARGETS_TRACKUID
 
static int mkv_parse_block_addition_mappings(AVFormatContext *s, AVStream *st, const MatroskaTrack *track)
 
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
 
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
 
The exact code depends on how similar the blocks are and how related they are to the block
 
CountedElement flag_original
 
#define MATROSKA_ID_CHAPTERTIMEEND
 
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
 
static EbmlSyntax matroska_track_encoding[6]
 
static EbmlSyntax matroska_chapter_display[]
 
#define MKTAG(a, b, c, d)
 
#define MATROSKA_ID_TRACKS
 
#define MATROSKA_ID_ENCODINGENCKEYID
 
@ AV_PKT_DATA_WEBVTT_IDENTIFIER
The optional first identifier line of a WebVTT cue.
 
static void ebml_free(EbmlSyntax *syntax, void *data)
 
void ff_reduce_index(AVFormatContext *s, int stream_index)
Ensure the index uses less memory than the maximum specified in AVFormatContext.max_index_size by dis...
 
#define MATROSKA_ID_ENCODINGCOMPSETTINGS
 
int cues_parsing_deferred
 
int ff_vorbis_comment(AVFormatContext *ms, AVDictionary **m, const uint8_t *buf, int size, int parse_picture)
Parse Vorbis comments.
 
#define MATROSKA_ID_SEEKPREROLL
 
unsigned char * buf_ptr
Current position in the buffer.
 
#define MATROSKA_ID_SEEKHEAD
 
uint64_t skip_to_timecode
 
int initial_padding
Audio only.
 
#define MATROSKA_ID_VIDEOPROJECTIONPOSEROLL
 
#define MATROSKA_ID_BLOCKADDID
 
This structure describes how to handle spherical videos, outlining information about projection,...
 
int avpriv_dict_set_timestamp(AVDictionary **dict, const char *key, int64_t timestamp)
Set a dictionary value to an ISO-8601 compliant timestamp string.
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_RB64
 
int32_t yaw
Rotation around the up vector [-180, 180].
 
#define MATROSKA_ID_TAGTARGETS_CHAPTERUID
 
static int ebml_read_length(MatroskaDemuxContext *matroska, AVIOContext *pb, uint64_t *number)
Read a EBML length value.
 
#define MATROSKA_ID_TRACKTIMECODESCALE
 
static EbmlSyntax matroska_chapter_entry[9]
 
@ MATROSKA_VIDEO_PROJECTION_TYPE_CUBEMAP
 
static int matroska_aac_profile(char *codec_id)
 
static int is_keyframe(NalUnitType naltype)
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
 
#define av_fourcc2str(fourcc)
 
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
 
static int matroska_parse_flac(AVFormatContext *s, MatroskaTrack *track, int *offset)
 
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
 
#define MATROSKA_ID_BLOCKADDITIONS
 
@ MATROSKA_VIDEO_INTERLACE_FLAG_UNDETERMINED