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

Unified Diff: media/filters/frame_processor.h

Issue 2226443002: Support multiple media tracks in MSE / ChunkDemuxer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mp4 format is not supported on some trybots, so use webm Created 4 years, 3 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/filters/frame_processor.h
diff --git a/media/filters/frame_processor.h b/media/filters/frame_processor.h
index 2652d66fda5e4e5793230ed165eeeda95d2ebb80..e83c2d16de74caff778e97ad1b10a358d2afb7cd 100644
--- a/media/filters/frame_processor.h
+++ b/media/filters/frame_processor.h
@@ -25,15 +25,6 @@ class MEDIA_EXPORT FrameProcessor {
public:
typedef base::Callback<void(base::TimeDelta)> UpdateDurationCB;
- // TODO(wolenetz/acolwell): Ensure that all TrackIds are coherent and unique
- // for each track buffer. For now, special track identifiers are used for each
- // of audio and video here, and text TrackIds are assumed to be non-negative.
- // See http://crbug.com/341581.
- enum {
- kAudioTrackId = -2,
- kVideoTrackId = -3
- };
-
FrameProcessor(const UpdateDurationCB& update_duration_cb,
const scoped_refptr<MediaLog>& media_log);
~FrameProcessor();

Powered by Google App Engine
This is Rietveld 408576698