Searched refs:mxf_header_partition_pack_key (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | mxfdec.c | 319 static const uint8_t mxf_header_partition_pack_key[] = { 0x06,0x0e,0x2b,0x34,0x02,0x05,0x01,0… variable 2976 return !memcmp(key, mxf_header_partition_pack_key, 13) && in mxf_is_partition_pack_key() 3348 if (!mxf_read_sync(s->pb, mxf_header_partition_pack_key, 14)) { in mxf_read_header() 3770 if (p->buf_size < sizeof(mxf_header_partition_pack_key)) in mxf_probe() 3774 end -= sizeof(mxf_header_partition_pack_key); in mxf_probe() 3778 if (AV_RN32(bufp ) == AV_RN32(mxf_header_partition_pack_key ) && in mxf_probe() 3779 AV_RN32(bufp+ 4) == AV_RN32(mxf_header_partition_pack_key+ 4) && in mxf_probe() 3780 AV_RN32(bufp+ 8) == AV_RN32(mxf_header_partition_pack_key+ 8) && in mxf_probe() 3781 AV_RN16(bufp+12) == AV_RN16(mxf_header_partition_pack_key+12)) in mxf_probe()
|