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

Unified Diff: media/base/android/media_codec_audio_decoder.cc

Issue 1254293003: MediaCodecPlayer implementation (stage 4 - preroll) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mtplayer-browserseek
Patch Set: Added unit tests that check A/V sync after preroll Created 5 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/android/media_codec_audio_decoder.h ('k') | media/base/android/media_codec_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/media_codec_audio_decoder.cc
diff --git a/media/base/android/media_codec_audio_decoder.cc b/media/base/android/media_codec_audio_decoder.cc
index c910ce62f272ef889354ea257d6adc9462b935f3..df69d057fac92edb02b7397c68713db4e3689284 100644
--- a/media/base/android/media_codec_audio_decoder.cc
+++ b/media/base/android/media_codec_audio_decoder.cc
@@ -15,6 +15,9 @@ namespace {
// Use 16bit PCM for audio output. Keep this value in sync with the output
// format we passed to AudioTrack in MediaCodecBridge.
const int kBytesPerAudioOutputSample = 2;
+
+// Fake buffer index that refers to pending buffer.
+const int kPendingBufferIndex = -1;
}
namespace media {
@@ -23,12 +26,14 @@ MediaCodecAudioDecoder::MediaCodecAudioDecoder(
const scoped_refptr<base::SingleThreadTaskRunner>& media_task_runner,
const base::Closure& request_data_cb,
const base::Closure& starvation_cb,
+ const base::Closure& preroll_done_cb,
const base::Closure& stop_done_cb,
const base::Closure& error_cb,
const SetTimeCallback& update_current_time_cb)
: MediaCodecDecoder(media_task_runner,
request_data_cb,
starvation_cb,
+ preroll_done_cb,
stop_done_cb,
error_cb,
"AudioDecoder"),
@@ -71,6 +76,11 @@ void MediaCodecAudioDecoder::Flush() {
frame_count_ = 0;
}
+void MediaCodecAudioDecoder::ReleaseMediaCodec() {
+ DCHECK(media_task_runner_->BelongsToCurrentThread());
+ MediaCodecDecoder::ReleaseMediaCodec();
+}
+
void MediaCodecAudioDecoder::SetVolume(double volume) {
DCHECK(media_task_runner_->BelongsToCurrentThread());
@@ -158,37 +168,59 @@ void MediaCodecAudioDecoder::OnOutputFormatChanged() {
void MediaCodecAudioDecoder::Render(int buffer_index,
size_t size,
- bool render_output,
+ RenderMode render_mode,
base::TimeDelta pts,
bool eos_encountered) {
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
- DVLOG(2) << class_name() << "::" << __FUNCTION__ << " pts:" << pts;
+ DVLOG(2) << class_name() << "::" << __FUNCTION__ << " pts:" << pts << " "
+ << AsString(render_mode);
+
+ const bool do_play = (render_mode != kRenderSkip);
+
+ if (do_play) {
+ AudioCodecBridge* audio_codec =
+ static_cast<AudioCodecBridge*>(media_codec_bridge_.get());
- render_output = render_output && (size != 0u);
+ DCHECK(audio_codec);
+
+ const bool postpone = (render_mode == kRenderAfterPreroll);
- if (render_output) {
int64 head_position =
- (static_cast<AudioCodecBridge*>(media_codec_bridge_.get()))
- ->PlayOutputBuffer(buffer_index, size);
+ audio_codec->PlayOutputBuffer(buffer_index, size, postpone);
+
+ DVLOG(2) << class_name() << "::" << __FUNCTION__ << " pts:" << pts
+ << (postpone ? " POSTPONE" : "")
+ << " head_position:" << head_position;
size_t new_frames_count = size / bytes_per_frame_;
frame_count_ += new_frames_count;
audio_timestamp_helper_->AddFrames(new_frames_count);
- int64 frames_to_play = frame_count_ - head_position;
- DCHECK_GE(frames_to_play, 0);
-
- base::TimeDelta last_buffered = audio_timestamp_helper_->GetTimestamp();
- base::TimeDelta now_playing =
- last_buffered -
- audio_timestamp_helper_->GetFrameDuration(frames_to_play);
-
- DVLOG(2) << class_name() << "::" << __FUNCTION__ << " pts:" << pts
- << " will play: [" << now_playing << "," << last_buffered << "]";
- media_task_runner_->PostTask(
- FROM_HERE,
- base::Bind(update_current_time_cb_, now_playing, last_buffered));
+ if (!postpone) {
+ int64 frames_to_play = frame_count_ - head_position;
+
+ // TODO(timav): remove this DVLOG after more testing.
+ if (frames_to_play < 0) {
qinmin 2015/08/05 18:54:02 simply DCHECK_GE(frames_to_play, 0) << "......"
Tima Vaisburd 2015/08/06 00:12:37 Done.
+ DVLOG(0) << class_name() << "::" << __FUNCTION__ << " pts:" << pts
+ << " frame_count_ < head_position (" << frame_count_ << " < "
+ << head_position << ")"
+ << " new_frames_count:" << new_frames_count;
+ }
+ DCHECK_GE(frames_to_play, 0);
+
+ base::TimeDelta last_buffered = audio_timestamp_helper_->GetTimestamp();
+ base::TimeDelta now_playing =
+ last_buffered -
+ audio_timestamp_helper_->GetFrameDuration(frames_to_play);
+
+ DVLOG(2) << class_name() << "::" << __FUNCTION__ << " pts:" << pts
+ << " will play: [" << now_playing << "," << last_buffered << "]";
+
+ media_task_runner_->PostTask(
+ FROM_HERE,
+ base::Bind(update_current_time_cb_, now_playing, last_buffered));
+ }
}
media_codec_bridge_->ReleaseOutputBuffer(buffer_index, false);
« no previous file with comments | « media/base/android/media_codec_audio_decoder.h ('k') | media/base/android/media_codec_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698