Searched refs:marker (Results 1 - 13 of 13) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dsuperframe_test.cc50 const uint8_t marker = buffer[pkt->data.frame.sz - 1]; local
51 const int frames = (marker & 0x7) + 1;
52 const int mag = ((marker >> 3) & 3) + 1;
54 if ((marker & 0xe0) == 0xc0 &&
56 buffer[pkt->data.frame.sz - index_sz] == marker) {
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
H A Dvp9_dx_iface.c278 uint8_t marker; local
281 marker = data[data_sz - 1];
284 if ((marker & 0xe0) == 0xc0) {
285 const uint32_t frames = (marker & 0x7) + 1;
286 const uint32_t mag = ((marker >> 3) & 0x3) + 1;
289 if (data_sz >= index_sz && data[data_sz - index_sz] == marker) {
325 const uint8_t marker = *data_start; local
326 const uint32_t frames = (marker & 0x7) + 1;
327 const uint32_t mag = ((marker >> 3) & 0x3) + 1;
330 if (data_sz >= index_sz && data_start[index_sz - 1] == marker) {
[all...]
H A Dvp9_cx_iface.c616 uint8_t marker = 0xc0; local
623 // Add the number of frames to the marker byte
624 marker |= ctx->pending_frame_count - 1;
633 marker |= mag << 3;
641 *x++ = marker;
650 *x++ = marker;
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/common/src/
H A Dextra_data_handler.cpp167 OMX_U32 marker = 0, pad = 0xFF; local
199 marker = d_u(1);
200 if(marker) {
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/common/src/
H A Dextra_data_handler.cpp181 OMX_U32 marker = 0, pad = 0xFF; local
216 marker = d_u(1);
218 if (marker) {
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/src/
H A Dextra_data_handler.cpp181 OMX_U32 marker = 0, pad = 0xFF; local
216 marker = d_u(1);
218 if (marker) {
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/common/src/
H A Dextra_data_handler.cpp181 OMX_U32 marker = 0, pad = 0xFF; local
216 marker = d_u(1);
218 if (marker) {
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/
H A DJPEGTest.c174 * Parse the marker stream until SOS or EOI is seen;
218 int marker = 0; local
224 ReadFile(infile, &marker, 1, &got, NULL);
226 marker = fgetc(infile);
228 PRINT("MARKER IS %x\n",marker);
230 if ( marker != 0xff ) {
242 if ( marker == 0xff ) {
259 PRINT("invalid marker");
280 PRINT("Jpeg section marker 0x%02x size %d\n",marker, itemle
[all...]
/hardware/intel/common/libva/test/decode/
H A Dtinyjpeg.c192 trace("> SOF marker\n");
204 trace("> DQT marker\n");
221 trace("< DQT marker\n");
231 trace("> SOF marker\n");
269 trace("< SOF marker\n");
279 trace("> SOS marker\n");
296 error("SOS cid order (%d:%d) isn't compatible with the SOF marker (%d:%d)\n",
302 trace("< SOS marker\n");
321 trace("> DHT marker (length=%d)\n", length);
362 trace("< DHT marker\
419 int marker; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
H A Dsvc_encodeframe.c180 uint8_t marker = 0xc0; local
187 // Add the number of frames to the marker byte
188 marker |= sf->count - 1;
196 marker |= mag << 3;
202 *bufp++ = marker;
212 *bufp++ = marker;
/hardware/qcom/camera/QCamera2/HAL/test/
H A Dqcamera_test.cpp566 int marker = 0; local
580 marker = buffer[pos++];
581 if (marker != 0xff) break;
589 mSections[mSectionsRead].Type = marker;
598 ALOGE("invalid marker");
625 switch(marker){
679 // exif marker instead, althogh ACDsee will write images
681 // this program will re-create this marker on absence of exif
682 // marker.
693 // There can be different section using the same marker
[all...]
/hardware/qcom/camera/msm8998/QCamera2/HAL/test/
H A Dqcamera_test.cpp566 int marker = 0; local
580 marker = buffer[pos++];
581 if (marker != 0xff) break;
589 mSections[mSectionsRead].Type = marker;
598 ALOGE("invalid marker");
625 switch(marker){
679 // exif marker instead, althogh ACDsee will write images
681 // this program will re-create this marker on absence of exif
682 // marker.
693 // There can be different section using the same marker
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc8697 const char* const marker =
8701 GetStream() << ::std::endl << marker << " "

Completed in 378 milliseconds