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

Side by Side Diff: media/video/capture/win/capability_list_win.h

Issue 83633008: Reland: Reorganize media::VideoCapture* types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Windows specific implementation of VideoCaptureDevice. 5 // Windows specific implementation of VideoCaptureDevice.
6 // DirectShow is used for capturing. DirectShow provide its own threads 6 // DirectShow is used for capturing. DirectShow provide its own threads
7 // for capturing. 7 // for capturing.
8 8
9 #ifndef MEDIA_VIDEO_CAPTURE_WIN_CAPABILITY_LIST_WIN_H_ 9 #ifndef MEDIA_VIDEO_CAPTURE_WIN_CAPABILITY_LIST_WIN_H_
10 #define MEDIA_VIDEO_CAPTURE_WIN_CAPABILITY_LIST_WIN_H_ 10 #define MEDIA_VIDEO_CAPTURE_WIN_CAPABILITY_LIST_WIN_H_
11 11
12 #include <list> 12 #include <list>
13 13
14 #include "base/basictypes.h"
14 #include "base/threading/non_thread_safe.h" 15 #include "base/threading/non_thread_safe.h"
15 #include "media/video/capture/video_capture_types.h" 16 #include "media/video/capture/video_capture_types.h"
16 17
17 namespace media { 18 namespace media {
18 19
19 struct VideoCaptureCapabilityWin : public VideoCaptureCapability { 20 struct VideoCaptureCapabilityWin {
20 explicit VideoCaptureCapabilityWin(int index) 21 explicit VideoCaptureCapabilityWin(int index)
21 : stream_index(index), 22 : stream_index(index),
22 frame_rate_numerator(0), 23 frame_rate_numerator(0),
23 frame_rate_denominator(1) {} 24 frame_rate_denominator(1) {}
24 int stream_index; 25 int stream_index;
25 // Internally to Media Foundation Api type devices we use rational framerates 26 // Internally to Media Foundation Api type devices we use rational framerates
26 // so framerates can be properly represented, f.i. 29.971fps= 30000/1001. 27 // so framerates can be properly represented, f.i. 29.971fps= 30000/1001.
27 int frame_rate_numerator; 28 int frame_rate_numerator;
28 int frame_rate_denominator; 29 int frame_rate_denominator;
30 VideoCaptureFormat supported_format;
29 }; 31 };
30 32
31 class CapabilityList : public base::NonThreadSafe { 33 class CapabilityList : public base::NonThreadSafe {
32 public: 34 public:
33 CapabilityList(); 35 CapabilityList();
34 ~CapabilityList(); 36 ~CapabilityList();
35 37
36 bool empty() const { return capabilities_.empty(); } 38 bool empty() const { return capabilities_.empty(); }
37 39
38 // Appends an entry to the list. 40 // Appends an entry to the list.
39 void Add(const VideoCaptureCapabilityWin& capability); 41 void Add(const VideoCaptureCapabilityWin& capability);
40 42
41 // Loops through the list of capabilities and returns an index of the best 43 // Loops through the list of capabilities and returns an index of the best
42 // matching capability. The algorithm prioritizes height, width, frame rate 44 // matching capability. The algorithm prioritizes height, width, frame rate
43 // and color format in that order. 45 // and color format in that order.
44 const VideoCaptureCapabilityWin& GetBestMatchedCapability( 46 const VideoCaptureCapabilityWin& GetBestMatchedFormat(
45 int requested_width, int requested_height, 47 int requested_width,
48 int requested_height,
46 int requested_frame_rate) const; 49 int requested_frame_rate) const;
47 50
48 private: 51 private:
49 typedef std::list<VideoCaptureCapabilityWin> Capabilities; 52 typedef std::list<VideoCaptureCapabilityWin> Capabilities;
50 Capabilities capabilities_; 53 Capabilities capabilities_;
51 54
52 DISALLOW_COPY_AND_ASSIGN(CapabilityList); 55 DISALLOW_COPY_AND_ASSIGN(CapabilityList);
53 }; 56 };
54 57
55 } // namespace media 58 } // namespace media
56 59
57 #endif // MEDIA_VIDEO_CAPTURE_WIN_CAPABILITY_LIST_WIN_H_ 60 #endif // MEDIA_VIDEO_CAPTURE_WIN_CAPABILITY_LIST_WIN_H_
OLDNEW
« no previous file with comments | « media/video/capture/video_capture_types.cc ('k') | media/video/capture/win/capability_list_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698