Searched refs:cfgAttribs (Results 1 - 5 of 5) sorted by relevance
/hardware/intel/common/libmix/videodecoder/ |
H A D | VideoDecoderMPEG2.cpp | 425 VAConfigAttrib cfgAttribs[2]; local 426 cfgAttribs[0].type = VAConfigAttribMaxPictureWidth; 427 cfgAttribs[1].type = VAConfigAttribMaxPictureHeight; 430 VAEntrypointVLD, cfgAttribs, 2); 432 if (cfgAttribs[0].value * cfgAttribs[1].value < (uint32_t)mVideoFormatInfo.width * (uint32_t)mVideoFormatInfo.height) { 434 cfgAttribs[0].value, cfgAttribs[1].value, mVideoFormatInfo.width, mVideoFormatInfo.height);
|
H A D | VideoDecoderVP8.cpp | 482 VAConfigAttrib cfgAttribs[2]; local 483 cfgAttribs[0].type = VAConfigAttribMaxPictureWidth; 484 cfgAttribs[1].type = VAConfigAttribMaxPictureHeight; 486 VAEntrypointVLD, cfgAttribs, 2); 488 if (cfgAttribs[0].value * cfgAttribs[1].value < (uint32_t)mVideoFormatInfo.width * (uint32_t)mVideoFormatInfo.height) { 490 cfgAttribs[0].value, cfgAttribs[1].value, mVideoFormatInfo.width, mVideoFormatInfo.height);
|
H A D | VideoDecoderWMV.cpp | 586 VAConfigAttrib cfgAttribs[2]; local 587 cfgAttribs[0].type = VAConfigAttribMaxPictureWidth; 588 cfgAttribs[1].type = VAConfigAttribMaxPictureHeight; 590 VAEntrypointVLD, cfgAttribs, 2); 592 if (cfgAttribs[0].value * cfgAttribs[1].value < (uint32_t)mVideoFormatInfo.width * (uint32_t)mVideoFormatInfo.height) { 594 cfgAttribs[0].value, cfgAttribs[1].value, mVideoFormatInfo.width, mVideoFormatInfo.height);
|
H A D | VideoDecoderMPEG4.cpp | 672 VAConfigAttrib cfgAttribs[2]; local 673 cfgAttribs[0].type = VAConfigAttribMaxPictureWidth; 674 cfgAttribs[1].type = VAConfigAttribMaxPictureHeight; 677 VAEntrypointVLD, cfgAttribs, 2); 679 if (cfgAttribs[0].value * cfgAttribs[1].value < (uint32_t)mVideoFormatInfo.width * (uint32_t)mVideoFormatInfo.height) { 681 cfgAttribs[0].value, cfgAttribs[1].value, mVideoFormatInfo.width, mVideoFormatInfo.height);
|
H A D | VideoDecoderAVC.cpp | 1006 VAConfigAttrib cfgAttribs[2]; local 1007 cfgAttribs[0].type = VAConfigAttribMaxPictureWidth; 1008 cfgAttribs[1].type = VAConfigAttribMaxPictureHeight; 1010 VAEntrypointVLD, cfgAttribs, 2); 1012 if (cfgAttribs[0].value * cfgAttribs[1].value < (uint32_t)mVideoFormatInfo.width * (uint32_t)mVideoFormatInfo.height) { 1014 cfgAttribs[0].value, cfgAttribs[1].value, mVideoFormatInfo.width, mVideoFormatInfo.height);
|
Completed in 40 milliseconds