Home
last modified time | relevance | path

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

/hardware/intel/common/libmix/videodecoder/
DVideoDecoderMPEG2.cpp114 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data->frame_width || in decode()
115 mVideoFormatInfo.height != (uint32_t)data->codec_data->frame_height) && in decode()
118 …ITRACE("Video size is changed. from %dx%d to %dx%d\n",mVideoFormatInfo.width,mVideoFormatInfo.heig… in decode()
122 mVideoFormatInfo.width = data->codec_data->frame_width; in decode()
123 mVideoFormatInfo.height = data->codec_data->frame_height; in decode()
129 mVideoFormatInfo.valid = false; in decode()
132 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth) in decode()
133 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight); in decode()
153 mVideoFormatInfo.valid = true; in decode()
375 mVideoFormatInfo.width, mVideoFormatInfo.height, in updateFormatInfo()
[all …]
DVideoDecoderWMV.cpp115 if ((mVideoFormatInfo.width != data->se_data->CODED_WIDTH || in decode()
116 mVideoFormatInfo.height != data->se_data->CODED_HEIGHT) && in decode()
119 …ITRACE("video size is changed from %dx%d to %dx%d", mVideoFormatInfo.width, mVideoFormatInfo.heigh… in decode()
124 mVideoFormatInfo.width = data->se_data->CODED_WIDTH; in decode()
125 mVideoFormatInfo.height = data->se_data->CODED_HEIGHT; in decode()
131 mVideoFormatInfo.valid = false; in decode()
134 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth) in decode()
135 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight); in decode()
155 mVideoFormatInfo.valid = true; in decode()
460 p[4] = (mVideoFormatInfo.width >> 8) & 0x0ff; in updateConfigData()
[all …]
DVideoDecoderMPEG4.cpp109 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data.video_object_layer_width || in decode()
110 mVideoFormatInfo.height != (uint32_t)data->codec_data.video_object_layer_height) && in decode()
114 …ITRACE("Video size is changed. from %dx%d to %dx%d\n", mVideoFormatInfo.width, mVideoFormatInfo.he… in decode()
120 mVideoFormatInfo.width = data->codec_data.video_object_layer_width; in decode()
121 mVideoFormatInfo.height = data->codec_data.video_object_layer_height; in decode()
127 mVideoFormatInfo.valid = false; in decode()
130 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth) in decode()
131 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight); in decode()
150 mVideoFormatInfo.valid = true; in decode()
178 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.cpp54 mVideoFormatInfo.width, mVideoFormatInfo.height, width, height); in updateFormatInfo()
60 if ((mVideoFormatInfo.width != width || in updateFormatInfo()
61 mVideoFormatInfo.height != height) && in updateFormatInfo()
63 if ((VideoDecoderBase::alignMB(mVideoFormatInfo.width) != width) || in updateFormatInfo()
64 (VideoDecoderBase::alignMB(mVideoFormatInfo.height) != height)) { in updateFormatInfo()
68 mVideoFormatInfo.width = width; in updateFormatInfo()
69 mVideoFormatInfo.height = height; in updateFormatInfo()
73 mVideoFormatInfo.videoRange = 0; in updateFormatInfo()
77 mVideoFormatInfo.colorMatrix = VA_SRC_BT601; in updateFormatInfo()
81 mVideoFormatInfo.colorMatrix = 0; in updateFormatInfo()
[all …]
DVideoDecoderAVC.cpp146 mVideoFormatInfo.flags = 0; in decodeFrame()
166 mVideoFormatInfo.flags |= IS_SINGLE_FIELD; in decodeFrame()
721 if(mVideoFormatInfo.surfaceHeight == 1088 && DPBSize + AVC_EXTRA_SURFACE_NUMBER > 19) { in startVA()
746 mVideoFormatInfo.width, mVideoFormatInfo.height, width, height); in updateFormatInfo()
752 if ((mVideoFormatInfo.width != width || in updateFormatInfo()
753 mVideoFormatInfo.height != height) && in updateFormatInfo()
755 if (VideoDecoderBase::alignMB(mVideoFormatInfo.width) != width || in updateFormatInfo()
756 VideoDecoderBase::alignMB(mVideoFormatInfo.height) != height) { in updateFormatInfo()
761 mVideoFormatInfo.width = width; in updateFormatInfo()
762 mVideoFormatInfo.height = height; in updateFormatInfo()
[all …]
DVideoDecoderBase.h125 VideoFormatInfo mVideoFormatInfo; variable