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

  /hardware/intel/common/libmix/videodecoder/
VideoDecoderMPEG2.cpp 101 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data->frame_width ||
102 mVideoFormatInfo.height != (uint32_t)data->codec_data->frame_height) &&
105 ITRACE("Video size is changed. from %dx%d to %dx%d\n",mVideoFormatInfo.width,mVideoFormatInfo.height, data->codec_data->frame_width,data->codec_data->frame_height);
109 mVideoFormatInfo.width = data->codec_data->frame_width;
110 mVideoFormatInfo.height = data->codec_data->frame_height;
116 mVideoFormatInfo.valid = false;
119 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth)
120 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight)
    [all...]
VideoDecoderWMV.cpp 102 if ((mVideoFormatInfo.width != data->se_data->CODED_WIDTH ||
103 mVideoFormatInfo.height != data->se_data->CODED_HEIGHT) &&
106 ITRACE("video size is changed from %dx%d to %dx%d", mVideoFormatInfo.width, mVideoFormatInfo.height,
111 mVideoFormatInfo.width = data->se_data->CODED_WIDTH;
112 mVideoFormatInfo.height = data->se_data->CODED_HEIGHT;
118 mVideoFormatInfo.valid = false;
121 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth)
122 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight)
    [all...]
VideoDecoderMPEG4.cpp 96 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data.video_object_layer_width ||
97 mVideoFormatInfo.height != (uint32_t)data->codec_data.video_object_layer_height) &&
101 ITRACE("Video size is changed. from %dx%d to %dx%d\n", mVideoFormatInfo.width, mVideoFormatInfo.height,
107 mVideoFormatInfo.width = data->codec_data.video_object_layer_width;
108 mVideoFormatInfo.height = data->codec_data.video_object_layer_height;
114 mVideoFormatInfo.valid = false;
117 needFlush = (mVideoFormatInfo.width > mVideoFormatInfo.surfaceWidth)
118 || (mVideoFormatInfo.height > mVideoFormatInfo.surfaceHeight)
    [all...]
VideoDecoderVP8.cpp 51 mVideoFormatInfo.width, mVideoFormatInfo.height, width, height);
57 if ((mVideoFormatInfo.width != width ||
58 mVideoFormatInfo.height != height) &&
60 if ((VideoDecoderBase::alignMB(mVideoFormatInfo.width) != width) ||
61 (VideoDecoderBase::alignMB(mVideoFormatInfo.height) != height)) {
65 mVideoFormatInfo.width = width;
66 mVideoFormatInfo.height = height;
70 mVideoFormatInfo.videoRange = 0;
74 mVideoFormatInfo.colorMatrix = VA_SRC_BT601
    [all...]
VideoDecoderAVC.cpp 132 mVideoFormatInfo.flags = 0;
152 mVideoFormatInfo.flags |= IS_SINGLE_FIELD;
698 if(mVideoFormatInfo.height == 1088 && DPBSize + AVC_EXTRA_SURFACE_NUMBER > 19) {
710 mVideoFormatInfo.width, mVideoFormatInfo.height, width, height);
725 if ((mVideoFormatInfo.width != width ||
726 mVideoFormatInfo.height != height) &&
728 if (VideoDecoderBase::alignMB(mVideoFormatInfo.width) != width ||
729 VideoDecoderBase::alignMB(mVideoFormatInfo.height) != height) {
733 mVideoFormatInfo.width = width
    [all...]
VideoDecoderBase.cpp 67 memset(&mVideoFormatInfo, 0, sizeof(VideoFormatInfo));
74 mVideoFormatInfo.mimeType = strdup(mimeType);
90 free(mVideoFormatInfo.mimeType);
133 mVideoFormatInfo.width = buffer->width;
134 mVideoFormatInfo.height = buffer->height;
136 mVideoFormatInfo.surfaceWidth = buffer->graphicBufferWidth;
137 mVideoFormatInfo.surfaceHeight = buffer->graphicBufferHeight;
163 mVideoFormatInfo.width = buffer->width;
164 mVideoFormatInfo.height = buffer->height;
166 mVideoFormatInfo.surfaceWidth = buffer->graphicBufferWidth
    [all...]
VideoDecoderBase.h 125 VideoFormatInfo mVideoFormatInfo;

Completed in 313 milliseconds