Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Don't Submit] Test on device tests #2191

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cobalt/media/base/sbplayer_pipeline.cc
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ void SbPlayerPipeline::CreatePlayer(SbDrmSystem drm_system) {
HasRemoteAudioOutputs(player_bridge_->GetAudioConfigurations())
? audio_write_duration_remote_
: audio_write_duration_local_;
LOG(INFO) << "SbPlayerBridge created, with audio write duration at "
LOG(INFO) << "Test SbPlayerBridge created, with audio write duration at "
<< audio_write_duration_for_preroll_;
#endif // SB_API_VERSION >= 15

Expand Down
4 changes: 2 additions & 2 deletions starboard/shared/ffmpeg/ffmpeg_audio_decoder_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,10 @@ AudioDecoderImpl<FFMPEG>::Read(int* samples_per_second) {
void AudioDecoderImpl<FFMPEG>::Reset() {
SB_DCHECK(BelongsToCurrentThread());

TeardownCodec();
/*TeardownCodec();
if ((ffmpeg_->specialization_version()) == FFMPEG) {
InitializeCodec();
}
}*/

stream_ended_ = false;
while (!decoded_audios_.empty()) {
Expand Down
Loading