Home
last modified time | relevance | path

Searched refs:mVideoFormatInfo (Results 1 – 7 of 7) sorted by relevance

/hardware/intel/common/libmix/videodecoder/
DVideoDecoderMPEG2.cpp101 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data->frame_width || in decode()
102 mVideoFormatInfo.height != (uint32_t)data->codec_data->frame_height) && in decode()
105 …ITRACE("Video size is changed. from %dx%d to %dx%d\n",mVideoFormatInfo.width,mVideoFormatInfo.heig… in decode()
109 mVideoFormatInfo.width = data->codec_data->frame_width; in decode()
110 mVideoFormatInfo.height = data->codec_data->frame_height; in decode()
116 mVideoFormatInfo.valid = false; in decode()
119 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth) in decode()
120 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight); in decode()
140 mVideoFormatInfo.valid = true; in decode()
362 mVideoFormatInfo.width, mVideoFormatInfo.height, in updateFormatInfo()
[all …]
DVideoDecoderWMV.cpp102 if ((mVideoFormatInfo.width != data->se_data->CODED_WIDTH || in decode()
103 mVideoFormatInfo.height != data->se_data->CODED_HEIGHT) && in decode()
106 …ITRACE("video size is changed from %dx%d to %dx%d", mVideoFormatInfo.width, mVideoFormatInfo.heigh… in decode()
111 mVideoFormatInfo.width = data->se_data->CODED_WIDTH; in decode()
112 mVideoFormatInfo.height = data->se_data->CODED_HEIGHT; in decode()
118 mVideoFormatInfo.valid = false; in decode()
121 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth) in decode()
122 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight); in decode()
142 mVideoFormatInfo.valid = true; in decode()
447 p[4] = (mVideoFormatInfo.width >> 8) & 0x0ff; in updateConfigData()
[all …]
DVideoDecoderMPEG4.cpp96 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data.video_object_layer_width || in decode()
97 mVideoFormatInfo.height != (uint32_t)data->codec_data.video_object_layer_height) && in decode()
101 …ITRACE("Video size is changed. from %dx%d to %dx%d\n", mVideoFormatInfo.width, mVideoFormatInfo.he… in decode()
107 mVideoFormatInfo.width = data->codec_data.video_object_layer_width; in decode()
108 mVideoFormatInfo.height = data->codec_data.video_object_layer_height; in decode()
114 mVideoFormatInfo.valid = false; in decode()
117 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth) in decode()
118 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight); in decode()
137 mVideoFormatInfo.valid = true; in decode()
165 data->picture_data->picture_param.vop_width = mVideoFormatInfo.width; in decodeFrame()
[all …]
DVideoDecoderBase.cpp67 memset(&mVideoFormatInfo, 0, sizeof(VideoFormatInfo)); in VideoDecoderBase()
74 mVideoFormatInfo.mimeType = strdup(mimeType); in VideoDecoderBase()
90 free(mVideoFormatInfo.mimeType); in ~VideoDecoderBase()
133 mVideoFormatInfo.width = buffer->width; in start()
134 mVideoFormatInfo.height = buffer->height; in start()
136 mVideoFormatInfo.surfaceWidth = buffer->graphicBufferWidth; in start()
137 mVideoFormatInfo.surfaceHeight = buffer->graphicBufferHeight; in start()
163 mVideoFormatInfo.width = buffer->width; in reset()
164 mVideoFormatInfo.height = buffer->height; in reset()
166 mVideoFormatInfo.surfaceWidth = buffer->graphicBufferWidth; in reset()
[all …]
DVideoDecoderVP8.cpp51 mVideoFormatInfo.width, mVideoFormatInfo.height, width, height); in updateFormatInfo()
57 if ((mVideoFormatInfo.width != width || in updateFormatInfo()
58 mVideoFormatInfo.height != height) && in updateFormatInfo()
60 if ((VideoDecoderBase::alignMB(mVideoFormatInfo.width) != width) || in updateFormatInfo()
61 (VideoDecoderBase::alignMB(mVideoFormatInfo.height) != height)) { in updateFormatInfo()
65 mVideoFormatInfo.width = width; in updateFormatInfo()
66 mVideoFormatInfo.height = height; in updateFormatInfo()
70 mVideoFormatInfo.videoRange = 0; in updateFormatInfo()
74 mVideoFormatInfo.colorMatrix = VA_SRC_BT601; in updateFormatInfo()
78 mVideoFormatInfo.colorMatrix = 0; in updateFormatInfo()
[all …]
DVideoDecoderAVC.cpp132 mVideoFormatInfo.flags = 0; in decodeFrame()
152 mVideoFormatInfo.flags |= IS_SINGLE_FIELD; in decodeFrame()
707 if(mVideoFormatInfo.surfaceHeight == 1088 && DPBSize + AVC_EXTRA_SURFACE_NUMBER > 19) { in startVA()
732 mVideoFormatInfo.width, mVideoFormatInfo.height, width, height); in updateFormatInfo()
738 if ((mVideoFormatInfo.width != width || in updateFormatInfo()
739 mVideoFormatInfo.height != height) && in updateFormatInfo()
741 if (VideoDecoderBase::alignMB(mVideoFormatInfo.width) != width || in updateFormatInfo()
742 VideoDecoderBase::alignMB(mVideoFormatInfo.height) != height) { in updateFormatInfo()
746 mVideoFormatInfo.width = width; in updateFormatInfo()
747 mVideoFormatInfo.height = height; in updateFormatInfo()
[all …]
DVideoDecoderBase.h125 VideoFormatInfo mVideoFormatInfo; variable