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

Unified Diff: media/filters/legacy_frame_processor.cc

Issue 222783007: Consider text tracks in the frame processor for new media segments. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DCHECK. Created 6 years, 8 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/filters/legacy_frame_processor.h ('k') | media/filters/source_buffer_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/legacy_frame_processor.cc
diff --git a/media/filters/legacy_frame_processor.cc b/media/filters/legacy_frame_processor.cc
index de1deb7dfe0b983a6fff269891ef69c1075e5e68..56d0cb2701b353cf504e59b75003f30ae11a0ed2 100644
--- a/media/filters/legacy_frame_processor.cc
+++ b/media/filters/legacy_frame_processor.cc
@@ -56,6 +56,7 @@ bool LegacyFrameProcessor::ProcessFrames(
StreamParser::BufferQueue filtered_audio;
StreamParser::BufferQueue filtered_video;
+ StreamParser::TextBufferQueueMap filtered_text;
if (audio_track) {
AdjustBufferTimestamps(audio_buffers, offset);
@@ -71,25 +72,49 @@ bool LegacyFrameProcessor::ProcessFrames(
new_media_segment, &filtered_video);
}
- if ((!filtered_audio.empty() || !filtered_video.empty()) &&
- *new_media_segment) {
- // Find the earliest timestamp in the filtered buffers and use that for the
- // segment start timestamp.
- base::TimeDelta segment_timestamp = kNoTimestamp();
+ // The earliest timestamp in the filtered buffers will be used for the segment
+ // start timestamp.
+ base::TimeDelta segment_timestamp = kInfiniteDuration();
+
+ // Process any buffers for each of the text tracks in the map.
+ for (StreamParser::TextBufferQueueMap::const_iterator itr = text_map.begin();
+ itr != text_map.end();
+ ++itr) {
+ const StreamParser::BufferQueue& text_buffers = itr->second;
+ if (text_buffers.empty())
+ continue;
- if (!filtered_audio.empty())
- segment_timestamp = filtered_audio.front()->GetDecodeTimestamp();
+ if (!FilterTextBuffers(itr->first,
+ append_window_start,
+ append_window_end,
+ offset,
+ text_buffers,
+ new_media_segment,
+ &segment_timestamp,
+ &filtered_text)) {
+ return false;
+ }
+ }
+
+ if ((!filtered_audio.empty() || !filtered_video.empty() ||
+ !filtered_text.empty()) &&
+ *new_media_segment) {
+ if (!filtered_audio.empty()) {
+ segment_timestamp = std::min(filtered_audio.front()->GetDecodeTimestamp(),
+ segment_timestamp);
+ }
- if (!filtered_video.empty() &&
- (segment_timestamp == kNoTimestamp() ||
- filtered_video.front()->GetDecodeTimestamp() < segment_timestamp)) {
- segment_timestamp = filtered_video.front()->GetDecodeTimestamp();
+ if (!filtered_video.empty()) {
+ segment_timestamp = std::min(filtered_video.front()->GetDecodeTimestamp(),
+ segment_timestamp);
}
*new_media_segment = false;
+ DCHECK(segment_timestamp != kInfiniteDuration());
for (TrackBufferMap::iterator itr = track_buffers_.begin();
- itr != track_buffers_.end(); ++itr) {
+ itr != track_buffers_.end();
+ ++itr) {
itr->second->stream()->OnNewMediaSegment(segment_timestamp);
}
}
@@ -104,26 +129,17 @@ bool LegacyFrameProcessor::ProcessFrames(
return false;
}
- if (text_map.empty())
- return true;
-
- // Process any buffers for each of the text tracks in the map.
- bool all_text_buffers_empty = true;
- for (StreamParser::TextBufferQueueMap::const_iterator itr = text_map.begin();
- itr != text_map.end();
- ++itr) {
- const StreamParser::BufferQueue text_buffers = itr->second;
- if (text_buffers.empty())
- continue;
-
- all_text_buffers_empty = false;
- if (!OnTextBuffers(itr->first, append_window_start, append_window_end,
- offset, text_buffers, new_media_segment)) {
- return false;
+ if (!filtered_text.empty()) {
+ for (StreamParser::TextBufferQueueMap::const_iterator itr =
+ filtered_text.begin();
+ itr != filtered_text.end();
+ ++itr) {
+ MseTrackBuffer* track = FindTrack(itr->first);
+ if (!track || !AppendAndUpdateDuration(track->stream(), itr->second))
+ return false;
}
}
- DCHECK(!all_text_buffers_empty);
return true;
}
@@ -221,13 +237,15 @@ bool LegacyFrameProcessor::AppendAndUpdateDuration(
return true;
}
-bool LegacyFrameProcessor::OnTextBuffers(
+bool LegacyFrameProcessor::FilterTextBuffers(
StreamParser::TrackId text_track_id,
base::TimeDelta append_window_start,
base::TimeDelta append_window_end,
base::TimeDelta timestamp_offset,
const StreamParser::BufferQueue& buffers,
- bool* new_media_segment) {
+ bool* new_media_segment,
+ base::TimeDelta* lowest_segment_timestamp,
+ StreamParser::TextBufferQueueMap* filtered_text) {
DCHECK(!buffers.empty());
DCHECK(text_track_id != kAudioTrackId && text_track_id != kVideoTrackId);
DCHECK(new_media_segment);
@@ -239,14 +257,22 @@ bool LegacyFrameProcessor::OnTextBuffers(
AdjustBufferTimestamps(buffers, timestamp_offset);
StreamParser::BufferQueue filtered_buffers;
- track->set_needs_random_access_point(false);
- FilterWithAppendWindow(append_window_start, append_window_end,
- buffers, track, new_media_segment, &filtered_buffers);
-
- if (filtered_buffers.empty())
- return true;
+ FilterWithAppendWindow(append_window_start,
+ append_window_end,
+ buffers,
+ track,
+ new_media_segment,
+ &filtered_buffers);
+
+ if (!filtered_buffers.empty()) {
+ *lowest_segment_timestamp =
+ std::min(*lowest_segment_timestamp,
+ filtered_buffers.front()->GetDecodeTimestamp());
+ DCHECK(filtered_text->find(text_track_id) == filtered_text->end());
+ filtered_text->insert(std::make_pair(text_track_id, filtered_buffers));
+ }
- return AppendAndUpdateDuration(track->stream(), filtered_buffers);
+ return true;
}
} // namespace media
« no previous file with comments | « media/filters/legacy_frame_processor.h ('k') | media/filters/source_buffer_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698