aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/message_fields.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/message_fields.cc')
-rw-r--r--cast/streaming/message_fields.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/cast/streaming/message_fields.cc b/cast/streaming/message_fields.cc
index f199ab8d..4411c80d 100644
--- a/cast/streaming/message_fields.cc
+++ b/cast/streaming/message_fields.cc
@@ -14,14 +14,18 @@ namespace openscreen {
namespace cast {
namespace {
-constexpr EnumNameTable<AudioCodec, 2> kAudioCodecNames{
- {{"aac", AudioCodec::kAac}, {"opus", AudioCodec::kOpus}}};
+constexpr EnumNameTable<AudioCodec, 3> kAudioCodecNames{
+ {{"aac", AudioCodec::kAac},
+ {"opus", AudioCodec::kOpus},
+ {"REMOTE_AUDIO", AudioCodec::kNotSpecified}}};
-constexpr EnumNameTable<VideoCodec, 4> kVideoCodecNames{
+constexpr EnumNameTable<VideoCodec, 6> kVideoCodecNames{
{{"h264", VideoCodec::kH264},
{"vp8", VideoCodec::kVp8},
{"hevc", VideoCodec::kHevc},
- {"vp9", VideoCodec::kVp9}}};
+ {"REMOTE_VIDEO", VideoCodec::kNotSpecified},
+ {"vp9", VideoCodec::kVp9},
+ {"av1", VideoCodec::kAv1}}};
} // namespace