HomeSort by relevance Sort by last modified time
    Searched refs:display_width (Results 1 - 23 of 23) sorted by null

  /external/opencore/pvmi/pvmf/include/
pvmf_video.h 49 display_width = 0;
61 uint32 display_width; member in class:PVMFYuvFormatSpecificInfo0
  /external/opencore/codecs_v2/video/m4v_h263/dec/include/
pvm4vdecoder.h 85 should be set to ((display_height + 15)/16)*16 x ((display_width + 15)/16)*16.
92 virtual void GetVideoDimensions(int32 *display_width, int32 *display_height);
pvvideodecoderinterface.h 72 virtual void GetVideoDimensions(int32 *display_width, int32 *display_height) = 0;
pvm4vdecoder_dpi.h 81 IMPORT_C void GetVideoDimensions(int32 *display_width, int32 *display_height)
83 *display_width = GetVideoWidth();
mp4dec_api.h 167 OSCL_IMPORT_REF void PVGetVideoDimensions(VideoDecControls *decCtrl, int32 *display_width, int32 *display_height);
  /external/opencore/codecs_v2/utilities/pv_config_parser/src/
pv_video_config_parser.cpp 83 int32 width, height, display_width, display_height = 0; local
86 retval = iDecodeVOLHeader(&psBits, &width, &height, &display_width, &display_height, &profile_level);
91 aOutputs->width = (uint32)display_width;
108 int32 width, height, display_width, display_height = 0; local
143 (int*) & display_width,
151 aOutputs->width = (uint32)display_width;
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_video_config_parser.cpp 82 int32 width, height, display_width, display_height = 0; local
85 retval = iDecodeVOLHeader(&psBits, &width, &height, &display_width, &display_height, &profile_level);
90 aOutputs->width = (uint32)display_width;
108 int32 width, height, display_width, display_height = 0; local
144 (int*) & display_width,
153 aOutputs->width = (uint32)display_width;
ti_m4v_config_parser.cpp 102 OSCL_EXPORT_REF int16 iGetM4VConfigInfo(uint8 *buffer, int32 length, int32 *width, int32 *height, int32 *display_width, int32 *display_height)
112 *width = *height = *display_height = *display_width = 0;
119 status = iDecodeVOLHeader(&psBits, width, height, display_width, display_height, &profilelevel);
126 OSCL_EXPORT_REF int16 iDecodeVOLHeader(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profilelevel)
397 *display_width = (int32)codeword;
408 *width = (*display_width + 15) & -16;
417 iDecodeShortHeader(psBits, width, height, display_width, display_height);
446 int32 *display_width,
517 *display_width = *width;
563 *display_width = *width
    [all...]
  /external/opencore/codecs_v2/omx/omx_m4v/src/
mpeg4_dec.cpp 152 int32 display_width, display_height; local
154 if (iGetM4VConfigInfo(*aInputBuf, *aInBufSize, &aligned_width, &aligned_height, &display_width, &display_height))
159 iDisplay_Width = display_width;
161 aPortParam->format.video.nFrameWidth = iDisplay_Width; // use non 16byte aligned values (display_width) for H263
162 aPortParam->format.video.nFrameHeight = iDisplay_Height; // like in the case of M4V (PVGetVideoDimensions also returns display_width/height)
203 int32 display_width, display_height; local
204 PVGetVideoDimensions(&VideoCtrl, &display_width, &display_height);
205 iDisplay_Width = display_width;
  /external/opencore/codecs_v2/utilities/m4v_config_parser/src/
m4v_config_parser.cpp 119 OSCL_EXPORT_REF int16 iGetM4VConfigInfo(uint8 *buffer, int32 length, int32 *width, int32 *height, int32 *display_width, int32 *display_height)
129 *width = *height = *display_height = *display_width = 0;
136 status = iDecodeVOLHeader(&psBits, width, height, display_width, display_height, &profilelevel);
143 OSCL_EXPORT_REF int16 iDecodeVOLHeader(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profilelevel)
385 *display_width = (int32)codeword;
394 *width = (*display_width + 15) & -16;
403 iDecodeShortHeader(psBits, width, height, display_width, display_height);
421 int32 *display_width,
492 *display_width = *width;
538 *display_width = *width
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/dec/src/
pvm4vdecoder.cpp 133 void PVM4VDecoder::GetVideoDimensions(int32 *display_width, int32 *display_height)
135 PVGetVideoDimensions((VideoDecControls *)iVideoCtrls, display_width, display_height);
pvdec_api.cpp 713 /* Return : the display_width and display_height of */
719 OSCL_EXPORT_REF void PVGetVideoDimensions(VideoDecControls *decCtrl, int32 *display_width, int32 *display_height)
722 *display_width = video->displayWidth;
    [all...]
  /external/opencore/codecs_v2/utilities/colorconvert/src/
cczoomrotation12.cpp 569 int32 src_width, dst_width, display_width; local
581 display_width = disp->src_width;
583 deltaY = (src_width << 1) - display_width;
584 deltaCbCr = (src_width - display_width) >> 1;
585 deltaDst = (dst_width << 1) - display_width;
599 for (col = display_width - 2; col >= 0; col -= 2)
1160 int32 src_width, dst_width, display_width; local
    [all...]
  /external/opencore/codecs_v2/utilities/m4v_config_parser/include/
m4v_config_parser.h 92 int16 DecodeSPS(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profile_idc, int32 *level_idc);
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_m4v_config_parser.h 128 int16 DecodeSPS(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profile_idc, int32 *level_idc);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h 161 OSCL_IMPORT_REF void PVGetVideoDimensions(VideoDecControls *decCtrl, int32 *display_width, int32 *display_height);
  /hardware/ti/omap3/libopencorehw/
android_surface_output_omap34xx.cpp 300 iVideoDisplayWidth = (int32)yuvInfo->display_width;
  /external/opencore/nodes/pvmp4ffparsernode/src/
pvmf_mp4ffparser_node.cpp 8255 int32 display_width = 0; local
8417 int32 display_width = 0; local
8618 int32 display_width = 0; local
    [all...]
  /external/opencore/nodes/pvmediaoutputnode/src/
pv_media_output_node_inport.cpp     [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
pvdec_api.cpp 712 /* Return : the display_width and display_height of */
718 OSCL_EXPORT_REF void PVGetVideoDimensions(VideoDecControls *decCtrl, int32 *display_width, int32 *display_height)
721 *display_width = video->displayWidth;
    [all...]
  /hardware/msm7k/libcamera/
QualcommCameraHardware.cpp 196 uint16_t display_width,
234 int display_width
    [all...]
  /external/opencore/nodes/pvomxvideodecnode/src/
pvmf_omx_videodec_node.cpp 280 fsiInfo->display_width = iYUVWidth;
    [all...]
  /external/opencore/pvmi/media_io/pvmiofileoutput/src/
pvmi_media_io_fileoutput.cpp     [all...]

Completed in 772 milliseconds