OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:def_output
(Results
1 - 2
of
2
) sorted by null
/hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9Hybrid.cpp
84
const OMX_PARAM_PORTDEFINITIONTYPE *
def_output
= this->ports[OUTPORT_INDEX]->GetPortDefinition();
local
85
if (
def_output
== NULL) {
88
bufferCount = mMetaDataBuffersNum =
def_output
->nBufferCountActual;
91
mGraphicBufferParam.graphicBufferColorFormat =
def_output
->format.video.eColorFormat;
92
mGraphicBufferParam.graphicBufferHStride = (
def_output
->format.video.nFrameWidth + VP9_YV12_ALIGN) & ~VP9_YV12_ALIGN;
93
mGraphicBufferParam.graphicBufferVStride = (
def_output
->format.video.nFrameHeight + 0x1f) & ~0x1f;
94
mGraphicBufferParam.graphicBufferWidth =
def_output
->format.video.nFrameWidth;
95
mGraphicBufferParam.graphicBufferHeight =
def_output
->format.video.nFrameHeight;
96
mDecodedImageWidth =
def_output
->format.video.nFrameWidth;
97
mDecodedImageHeight =
def_output
->format.video.nFrameHeight
168
const OMX_PARAM_PORTDEFINITIONTYPE *
def_output
= this->ports[OUTPORT_INDEX]->GetPortDefinition();
local
[
all
...]
OMXVideoDecoderBase.cpp
510
const OMX_PARAM_PORTDEFINITIONTYPE *
def_output
= this->ports[OUTPORT_INDEX]->GetPortDefinition();
local
511
if (
def_output
== NULL) {
515
mMetaDataBuffersNum =
def_output
->nBufferCountActual;
518
mGraphicBufferParam.graphicBufferColorFormat =
def_output
->format.video.eColorFormat;
519
mGraphicBufferParam.graphicBufferHStride = getStride(
def_output
->format.video.nFrameWidth);
520
mGraphicBufferParam.graphicBufferVStride = (
def_output
->format.video.nFrameHeight + 0x1f) & ~0x1f;
521
mGraphicBufferParam.graphicBufferWidth =
def_output
->format.video.nFrameWidth;
522
mGraphicBufferParam.graphicBufferHeight =
def_output
->format.video.nFrameHeight;
[
all
...]
Completed in 433 milliseconds