ObjC: Deprecate codec settings parameter in startDecode method.
This parameter is being removed from the C++ API, remove it from the ObjC API also. It was never used for anything by the H264 decoder. Bug: webrtc:9107 Change-Id: I5222eac932a4e7d4129d803f8126b5e8d0b027b6 Reviewed-on: https://webrtc-review.googlesource.com/66740 Reviewed-by: Kári Helgason <kthelgason@webrtc.org> Commit-Queue: Anders Carlsson <andersc@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22730}
This commit is contained in:
committed by
Commit Bot
parent
98ee49d5fb
commit
2a1bbc3422
@ -23,8 +23,7 @@
|
||||
|
||||
id<RTCVideoDecoderFactory> CreateDecoderFactoryReturning(int return_code) {
|
||||
id decoderMock = OCMProtocolMock(@protocol(RTCVideoDecoder));
|
||||
OCMStub([decoderMock startDecodeWithSettings:[OCMArg any] numberOfCores:1])
|
||||
.andReturn(return_code);
|
||||
OCMStub([decoderMock startDecodeWithNumberOfCores:1]).andReturn(return_code);
|
||||
OCMStub([decoderMock decode:[OCMArg any]
|
||||
missingFrames:NO
|
||||
fragmentationHeader:[OCMArg any]
|
||||
|
||||
Reference in New Issue
Block a user