Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(655)

Unified Diff: media/cast/transport/cast_transport_config.h

Issue 306783002: [Cast] Clean-up: Merge AudioReceiverConfig+VideoReceiverConfig-->FrameReceiverConfig. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/cast/transport/cast_transport_config.h
diff --git a/media/cast/transport/cast_transport_config.h b/media/cast/transport/cast_transport_config.h
index d3136e00a94e8f0908bec0d315af0e2446a1c561..fea3613973918ed40af6370fc9adb384ba3adf92 100644
--- a/media/cast/transport/cast_transport_config.h
+++ b/media/cast/transport/cast_transport_config.h
@@ -25,9 +25,16 @@ enum RtcpMode {
kRtcpReducedSize, // Reduced-size RTCP mode is described by RFC 5506.
};
-enum VideoCodec { kFakeSoftwareVideo, kVp8, kH264, kVideoCodecLast = kH264 };
+enum VideoCodec {
+ kUnknownVideoCodec,
+ kFakeSoftwareVideo,
+ kVp8,
+ kH264,
+ kVideoCodecLast = kH264
+};
enum AudioCodec {
+ kUnknownAudioCodec,
kFakeSoftwareAudio,
Alpha Left Google 2014/05/29 02:35:11 I think we can remove kFakeSoftwareAudio. I added
miu 2014/05/29 19:03:10 Done.
kOpus,
kPcm16,

Powered by Google App Engine
This is Rietveld 408576698