| Index: webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
|
| diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
|
| index 530aa2d58ad7ef6745d90378cdc1e12706e3f491..50ec305c3986d3e49f936c21fd11cb9690172026 100644
|
| --- a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
|
| +++ b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc
|
| @@ -364,12 +364,6 @@ int VP9EncoderImpl::InitEncode(const VideoCodec* inst,
|
| int VP9EncoderImpl::NumberOfThreads(int width,
|
| int height,
|
| int number_of_cores) {
|
| - // For the current libvpx library, only 1 thread is supported when SVC is
|
| - // turned on.
|
| - if (num_temporal_layers_ > 1 || num_spatial_layers_ > 1) {
|
| - return 1;
|
| - }
|
| -
|
| // Keep the number of encoder threads equal to the possible number of column
|
| // tiles, which is (1, 2, 4, 8). See comments below for VP9E_SET_TILE_COLUMNS.
|
| if (width * height >= 1280 * 720 && number_of_cores > 4) {
|
|
|