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

Unified Diff: content/common/gpu/media/avda_shared_state.cc

Issue 1882373004: Migrate content/common/gpu/media code to media/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Squash and rebase Created 4 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
Index: content/common/gpu/media/avda_shared_state.cc
diff --git a/content/common/gpu/media/avda_shared_state.cc b/content/common/gpu/media/avda_shared_state.cc
deleted file mode 100644
index f55a3b0278e698e6a2bfba0921b1a159affd2582..0000000000000000000000000000000000000000
--- a/content/common/gpu/media/avda_shared_state.cc
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "content/common/gpu/media/avda_shared_state.h"
-
-#include "base/time/time.h"
-#include "content/common/gpu/media/avda_codec_image.h"
-#include "ui/gl/gl_bindings.h"
-#include "ui/gl/scoped_make_current.h"
-
-namespace content {
-
-AVDASharedState::AVDASharedState()
- : surface_texture_service_id_(0),
- frame_available_event_(false, false),
- surface_texture_is_attached_(false) {}
-
-AVDASharedState::~AVDASharedState() {}
-
-void AVDASharedState::SignalFrameAvailable() {
- frame_available_event_.Signal();
-}
-
-void AVDASharedState::WaitForFrameAvailable() {
- // 10msec covers >99.9% of cases, so just wait for up to that much before
- // giving up. If an error occurs, we might not ever get a notification.
- const base::TimeDelta max_wait_time(base::TimeDelta::FromMilliseconds(10));
- frame_available_event_.TimedWait(max_wait_time);
-}
-
-void AVDASharedState::DidAttachSurfaceTexture() {
- context_ = gfx::GLContext::GetCurrent();
- surface_ = gfx::GLSurface::GetCurrent();
- DCHECK(context_);
- DCHECK(surface_);
-
- surface_texture_is_attached_ = true;
-}
-
-void AVDASharedState::DidDetachSurfaceTexture() {
- context_ = nullptr;
- surface_ = nullptr;
- surface_texture_is_attached_ = false;
-}
-
-void AVDASharedState::CodecChanged(media::MediaCodecBridge* codec) {
- for (auto& image_kv : codec_images_)
- image_kv.second->CodecChanged(codec);
-}
-
-void AVDASharedState::SetImageForPicture(int picture_buffer_id,
- AVDACodecImage* image) {
- if (!image) {
- DCHECK(codec_images_.find(picture_buffer_id) != codec_images_.end());
- codec_images_.erase(picture_buffer_id);
- return;
- }
-
- DCHECK(codec_images_.find(picture_buffer_id) == codec_images_.end());
- codec_images_[picture_buffer_id] = image;
-}
-
-AVDACodecImage* AVDASharedState::GetImageForPicture(
- int picture_buffer_id) const {
- auto it = codec_images_.find(picture_buffer_id);
- return it == codec_images_.end() ? nullptr : it->second;
-}
-
-} // namespace content

Powered by Google App Engine
This is Rietveld 408576698