Integration of VP9 packetization.

Supports running 1 spatial and 1-3 temporal layers in non-flexible mode.

BUG=webrtc:4148, webrtc:4168, chromium:500602
TBR=mflodman

Review URL: https://codereview.webrtc.org/1211353002

Cr-Commit-Position: refs/heads/master@{#9665}
This commit is contained in:
asapersson
2015-07-31 06:10:09 -07:00
committed by Commit bot
parent 2386a45dc7
commit a9455ab235
15 changed files with 542 additions and 79 deletions

View File

@ -61,7 +61,8 @@ VideoCodecVP9 VideoEncoder::GetDefaultVp9Settings() {
vp9_settings.frameDroppingOn = true;
vp9_settings.keyFrameInterval = 3000;
vp9_settings.adaptiveQpMode = true;
vp9_settings.numberOfSpatialLayers = 1;
vp9_settings.flexibleMode = false;
return vp9_settings;
}