OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mVideoFormatInfo
(Results
1 - 6
of
6
) sorted by null
/hardware/intel/common/libmix/videodecoder/
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,
108
mVideoFormatInfo
.width = data->se_data->CODED_WIDTH;
109
mVideoFormatInfo
.height = data->se_data->CODED_HEIGHT;
112
noNeedFlush = (
mVideoFormatInfo
.width <=
mVideoFormatInfo
.surfaceWidth)
113
&& (
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,
104
mVideoFormatInfo
.width = data->codec_data.video_object_layer_width;
105
mVideoFormatInfo
.height = data->codec_data.video_object_layer_height;
107
noNeedFlush = (
mVideoFormatInfo
.width <=
mVideoFormatInfo
.surfaceWidth)
108
&& (
mVideoFormatInfo
.height <=
mVideoFormatInfo
.surfaceHeight)
[
all
...]
VideoDecoderVP8.cpp
51
mVideoFormatInfo
.width,
mVideoFormatInfo
.height, width, height);
53
if ((
mVideoFormatInfo
.width != width ||
54
mVideoFormatInfo
.height != height) &&
56
if ((VideoDecoderBase::alignMB(
mVideoFormatInfo
.width) != width) ||
57
(VideoDecoderBase::alignMB(
mVideoFormatInfo
.height) != height)) {
61
mVideoFormatInfo
.width = width;
62
mVideoFormatInfo
.height = height;
65
mVideoFormatInfo
.cropLeft = data->codec_data->crop_left;
66
mVideoFormatInfo
.cropRight = data->codec_data->crop_right
[
all
...]
VideoDecoderBase.cpp
66
memset(&
mVideoFormatInfo
, 0, sizeof(VideoFormatInfo));
72
mVideoFormatInfo
.mimeType = strdup(mimeType);
86
free(
mVideoFormatInfo
.mimeType);
129
mVideoFormatInfo
.width = buffer->width;
130
mVideoFormatInfo
.height = buffer->height;
132
mVideoFormatInfo
.surfaceWidth = buffer->graphicBufferWidth;
133
mVideoFormatInfo
.surfaceHeight = buffer->graphicBufferHeight;
158
mVideoFormatInfo
.width = buffer->width;
159
mVideoFormatInfo
.height = buffer->height;
161
mVideoFormatInfo
.surfaceWidth = buffer->graphicBufferWidth
[
all
...]
VideoDecoderAVC.cpp
132
mVideoFormatInfo
.flags = 0;
152
mVideoFormatInfo
.flags |= IS_SINGLE_FIELD;
691
if(
mVideoFormatInfo
.height == 1088 && DPBSize + AVC_EXTRA_SURFACE_NUMBER > 19) {
712
mVideoFormatInfo
.width,
mVideoFormatInfo
.height, width, height);
714
if ((
mVideoFormatInfo
.width != width ||
715
mVideoFormatInfo
.height != height) &&
717
if (VideoDecoderBase::alignMB(
mVideoFormatInfo
.width) != width ||
718
VideoDecoderBase::alignMB(
mVideoFormatInfo
.height) != height) {
722
mVideoFormatInfo
.width = width
[
all
...]
VideoDecoderBase.h
104
VideoFormatInfo
mVideoFormatInfo
;
Completed in 139 milliseconds