Definitions of video-codec name constants don't match their declarations
Constants kRTCVp8CodecName, kRTCVp9CodecName, kRTCH264CodecName declared in RTCRtpCodecParameters.h were defined without the "RTC" part in their names, thus using them in the app code resulted in linking errors. This patch fixes the naming mismatch. BUG=webrtc:7721 Review-Url: https://codereview.webrtc.org/2910863002 Cr-Commit-Position: refs/heads/master@{#18363}
This commit is contained in:
committed by
Commit Bot
parent
7b3eca9940
commit
bf5a801097
@ -30,9 +30,9 @@ const NSString * const kRTCPcmaCodecName = @(cricket::kPcmaCodecName);
|
||||
const NSString * const kRTCDtmfCodecName = @(cricket::kDtmfCodecName);
|
||||
const NSString * const kRTCComfortNoiseCodecName =
|
||||
@(cricket::kComfortNoiseCodecName);
|
||||
const NSString * const kVp8CodecName = @(cricket::kVp8CodecName);
|
||||
const NSString * const kVp9CodecName = @(cricket::kVp9CodecName);
|
||||
const NSString * const kH264CodecName = @(cricket::kH264CodecName);
|
||||
const NSString * const kRTCVp8CodecName = @(cricket::kVp8CodecName);
|
||||
const NSString * const kRTCVp9CodecName = @(cricket::kVp9CodecName);
|
||||
const NSString * const kRTCH264CodecName = @(cricket::kH264CodecName);
|
||||
|
||||
@implementation RTCRtpCodecParameters
|
||||
|
||||
|
||||
Reference in New Issue
Block a user