Searched refs:skip_byte_block (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | encryption_info.c | 73 ret->skip_byte_block = info->skip_byte_block; in av_encryption_info_clone() 111 info->skip_byte_block = AV_RB32(buffer + 8); in av_encryption_info_get_side_data() 144 AV_WB32(cur_buffer + 8, info->skip_byte_block); in av_encryption_info_add_side_data() 211 cenc_info->skip_blocks = info->skip_byte_block; in av_encryption_info_add_side_data_ex()
|
D | encryption_info.h | 111 uint32_t skip_byte_block; member
|
/third_party/ffmpeg/libavutil/tests/ |
D | encryption_info.c | 37 a->skip_byte_block != b->skip_byte_block || a->key_id_size != b->key_id_size || in compare_encryption_info() 91 info->skip_byte_block = 444; in run_encryption_info_test()
|
/third_party/ffmpeg/libavformat/ |
D | mov.c | 6915 sc->cenc.default_encrypted_sample->skip_byte_block = pattern & 0xf; in mov_read_tenc() 7130 } else if (!sample->crypt_byte_block && !sample->skip_byte_block) { in cens_scheme_decrypt() 7155 data += FFMIN(16*sample->skip_byte_block, rem_bytes); in cens_scheme_decrypt() 7156 rem_bytes -= FFMIN(16*sample->skip_byte_block, rem_bytes); in cens_scheme_decrypt() 7195 } else if (!sample->crypt_byte_block && !sample->skip_byte_block) { in cbcs_scheme_decrypt() 7221 data += FFMIN(16*sample->skip_byte_block, rem_bytes); in cbcs_scheme_decrypt() 7222 rem_bytes -= FFMIN(16*sample->skip_byte_block, rem_bytes); in cbcs_scheme_decrypt() 7238 …ple->scheme == MKBETAG('c','e','n','c') && !sample->crypt_byte_block && !sample->skip_byte_block) { in cenc_decrypt() 7240 …ple->scheme == MKBETAG('c','b','c','1') && !sample->crypt_byte_block && !sample->skip_byte_block) { in cenc_decrypt()
|