Searched defs:tsLayers (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1696 uint32_t tsLayers = 1; local
1707 tsLayers = 2; // use at least two layers as resulting video will likely be sped up
1715 if (tryLayers > tsLayers) {
1716 tsLayers = tryLayers;
1725 if (tsLayers > 1) {
1726 uint32_t bLayers = std::min(2u, tsLayers - 1); // use up-to 2 B-layers
1727 uint32_t pLayers = tsLayers - bLayers;
/frameworks/av/media/libstagefright/
H A DACodec.cpp4443 size_t tsLayers = 0; local
4482 tsLayers = numLayers;
4490 tsLayers = numLayers + numBLayers;
4494 tsLayers = min(tsLayers, (size_t)OMX_VIDEO_ANDROID_MAXVP8TEMPORALLAYERS);
4509 vp8type.nTemporalLayerCount = tsLayers;
4510 if (tsLayers > 0) {
4513 kVp8LayerRateAlloction[tsLayers - 1][i];
4528 outputFormat->setString("ts-schema", AStringPrintf("webrtc.vp8.%u-layer", tsLayers));
4529 } else if (tsLayers >
[all...]

Completed in 127 milliseconds