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

Side by Side Diff: content/common/gpu/media/fake_video_decode_accelerator.h

Issue 1816203003: Add an additional VDA::Flush() mode to return all allocated buffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_COMMON_GPU_MEDIA_FAKE_VIDEO_DECODE_ACCELERATOR_H_ 5 #ifndef CONTENT_COMMON_GPU_MEDIA_FAKE_VIDEO_DECODE_ACCELERATOR_H_
6 #define CONTENT_COMMON_GPU_MEDIA_FAKE_VIDEO_DECODE_ACCELERATOR_H_ 6 #define CONTENT_COMMON_GPU_MEDIA_FAKE_VIDEO_DECODE_ACCELERATOR_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <queue> 10 #include <queue>
(...skipping 25 matching lines...) Expand all
36 void Flush() override; 36 void Flush() override;
37 void Reset() override; 37 void Reset() override;
38 void Destroy() override; 38 void Destroy() override;
39 bool TryToSetupDecodeOnSeparateThread( 39 bool TryToSetupDecodeOnSeparateThread(
40 const base::WeakPtr<Client>& decode_client, 40 const base::WeakPtr<Client>& decode_client,
41 const scoped_refptr<base::SingleThreadTaskRunner>& decode_task_runner) 41 const scoped_refptr<base::SingleThreadTaskRunner>& decode_task_runner)
42 override; 42 override;
43 43
44 private: 44 private:
45 void DoPictureReady(); 45 void DoPictureReady();
46 void ReturnPicture(int32_t picture_buffer_id, int32_t bitstream_buffer_id);
46 47
47 // The message loop that created the class. Used for all callbacks. This 48 // The message loop that created the class. Used for all callbacks. This
48 // class expects all calls to this class to be on this message loop (not 49 // class expects all calls to this class to be on this message loop (not
49 // checked). 50 // checked).
50 const scoped_refptr<base::SingleThreadTaskRunner> child_task_runner_; 51 const scoped_refptr<base::SingleThreadTaskRunner> child_task_runner_;
51 52
52 Client* client_; 53 Client* client_;
53 54
54 // Make our context current before running any GL entry points. 55 // Make our context current before running any GL entry points.
55 MakeGLContextCurrentCallback make_context_current_cb_; 56 MakeGLContextCurrentCallback make_context_current_cb_;
56 57
58 Config config_;
59
57 // Output picture size. 60 // Output picture size.
58 gfx::Size frame_buffer_size_; 61 gfx::Size frame_buffer_size_;
59 62
60 // Picture buffer ids that are available for putting fake frames in. 63 // Picture buffer ids that are available for putting fake frames in.
61 std::queue<int> free_output_buffers_; 64 std::queue<int> free_output_buffers_;
62 // BitstreamBuffer ids for buffers that contain new data to decode. 65 // BitstreamBuffer ids for buffers that contain new data to decode.
63 std::queue<int> queued_bitstream_ids_; 66 std::queue<int> queued_bitstream_ids_;
64 67
65 bool flushing_; 68 bool flushing_;
66 69
67 // The WeakPtrFactory for |weak_this_|. 70 // The WeakPtrFactory for |weak_this_|.
68 base::WeakPtrFactory<FakeVideoDecodeAccelerator> weak_this_factory_; 71 base::WeakPtrFactory<FakeVideoDecodeAccelerator> weak_this_factory_;
69 72
70 DISALLOW_COPY_AND_ASSIGN(FakeVideoDecodeAccelerator); 73 DISALLOW_COPY_AND_ASSIGN(FakeVideoDecodeAccelerator);
71 }; 74 };
72 75
73 } // namespace content 76 } // namespace content
74 77
75 #endif // CONTENT_COMMON_GPU_MEDIA_FAKE_VIDEO_DECODE_ACCELERATOR_H_ 78 #endif // CONTENT_COMMON_GPU_MEDIA_FAKE_VIDEO_DECODE_ACCELERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698