HomeSort by relevance Sort by last modified time
    Searched defs:subsample (Results 1 - 6 of 6) sorted by null

  /bionic/libc/kernel/uapi/linux/
meye.h 22 unsigned char subsample; member in struct:meye_params
  /development/ndk/platforms/android-L/include/linux/
meye.h 22 unsigned char subsample; member in struct:meye_params
  /external/chromium_org/chromecast/media/cma/base/
frame_generator_for_test.cc 72 ::media::SubsampleEntry subsample; local
73 subsample.clear_bytes = chunk_size;
74 if (subsample.clear_bytes > frame_size)
75 subsample.clear_bytes = frame_size;
76 frame_size -= subsample.clear_bytes;
79 subsample.cypher_bytes = chunk_size;
80 if (subsample.cypher_bytes > frame_size)
81 subsample.cypher_bytes = frame_size;
82 frame_size -= subsample.cypher_bytes;
85 subsamples.push_back(subsample);
    [all...]
  /external/kernel-headers/original/uapi/linux/
meye.h 38 unsigned char subsample; member in struct:meye_params
  /external/chromium_org/media/cdm/
aes_decryptor.cc 119 const SubsampleEntry& subsample = subsamples[i]; local
121 src += subsample.clear_bytes;
123 dst += subsample.clear_bytes;
125 memcpy(dst, src, subsample.cypher_bytes);
126 src += subsample.cypher_bytes;
127 dst += subsample.cypher_bytes;
188 DVLOG(1) << "Subsample sizes do not equal input size";
199 // such that an encrypted subsample that ends away from a block boundary is
200 // immediately followed by the start of the next encrypted subsample. We
  /external/chromium_org/media/cdm/ppapi/external_clear_key/
clear_key_cdm.cc 110 media::SubsampleEntry subsample; local
111 subsample.clear_bytes = input_buffer.subsamples[i].clear_bytes;
112 subsample.cypher_bytes = input_buffer.subsamples[i].cipher_bytes;
113 subsamples.push_back(subsample);

Completed in 161 milliseconds