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

Unified Diff: media/base/pipeline_status.h

Issue 2770293002: Detect HLS from demuxing results (Closed)
Patch Set: Minor changes in comments Created 3 years, 4 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
« no previous file with comments | « media/base/media_log.cc ('k') | media/blink/webmediaplayer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/pipeline_status.h
diff --git a/media/base/pipeline_status.h b/media/base/pipeline_status.h
index 5ef61423062db736e8c78f0e5a6b9fc21114c127..b100500e4ddc3442fbef83a1ed836c62b65b90d7 100644
--- a/media/base/pipeline_status.h
+++ b/media/base/pipeline_status.h
@@ -34,6 +34,7 @@ enum PipelineStatus {
DEMUXER_ERROR_COULD_NOT_OPEN = 12,
DEMUXER_ERROR_COULD_NOT_PARSE = 13,
DEMUXER_ERROR_NO_SUPPORTED_STREAMS = 14,
+ DEMUXER_ERROR_DETECTED_HLS = 22,
// Decoder related errors.
DECODER_ERROR_NOT_SUPPORTED = 15,
@@ -48,7 +49,7 @@ enum PipelineStatus {
// Deprecated: AUDIO_RENDERER_ERROR_SPLICE_FAILED = 20,
// Must be equal to the largest value ever logged.
- PIPELINE_STATUS_MAX = PIPELINE_ERROR_EXTERNAL_RENDERER_FAILED,
+ PIPELINE_STATUS_MAX = DEMUXER_ERROR_DETECTED_HLS,
};
typedef base::Callback<void(PipelineStatus)> PipelineStatusCB;
« no previous file with comments | « media/base/media_log.cc ('k') | media/blink/webmediaplayer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698