summaryrefslogtreecommitdiff
path: root/chromium/media/cast/cast_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/cast/cast_config.h')
-rw-r--r--chromium/media/cast/cast_config.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/chromium/media/cast/cast_config.h b/chromium/media/cast/cast_config.h
index 9a9f84c1f1c..8b2a919739c 100644
--- a/chromium/media/cast/cast_config.h
+++ b/chromium/media/cast/cast_config.h
@@ -31,7 +31,9 @@ enum Codec {
CODEC_VIDEO_VP8,
CODEC_VIDEO_H264,
CODEC_VIDEO_REMOTE,
- CODEC_LAST = CODEC_VIDEO_REMOTE
+ CODEC_VIDEO_VP9,
+ CODEC_VIDEO_AV1,
+ CODEC_LAST = CODEC_VIDEO_AV1
};
// Describes the content being transported over RTP streams.
@@ -60,7 +62,11 @@ enum class RtpPayloadType {
// in-sequence. No assumptions about the data can be made.
REMOTE_VIDEO = 102,
- LAST = REMOTE_VIDEO
+ VIDEO_VP9 = 103,
+
+ VIDEO_AV1 = 104,
+
+ LAST = VIDEO_AV1
};
// TODO(miu): Eliminate these after moving "default config" into the top-level