Searched refs:ext_chk (Results 1 – 1 of 1) sorted by relevance
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/ |
D | mkvmuxer.cc | 3960 char ext_chk[64]; in UpdateChunkName() local 3962 sprintf_s(ext_chk, sizeof(ext_chk), "_%06d.%s", chunk_count_, ext); in UpdateChunkName() 3964 snprintf(ext_chk, sizeof(ext_chk), "_%06d.%s", chunk_count_, ext); in UpdateChunkName() 3967 const size_t length = strlen(chunking_base_name_) + strlen(ext_chk) + 1; in UpdateChunkName() 3973 strcpy_s(str, length - strlen(ext_chk), chunking_base_name_); in UpdateChunkName() 3974 strcat_s(str, length, ext_chk); in UpdateChunkName() 3977 strcat(str, ext_chk); in UpdateChunkName()
|