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

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

Issue 68503005: Reorganize media::VideoCapture* types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 999eac5e Removed DLOG(INFO) 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/threading/non_thread_safe.h" 14 #include "base/threading/non_thread_safe.h"
15 #include "media/video/capture/video_capture_types.h" 15 #include "media/video/capture/video_capture_types.h"
16 16
17 namespace media { 17 namespace media {
18 18
19 struct VideoCaptureCapabilityWin : public VideoCaptureCapability { 19 struct VideoCaptureCapabilityWin {
20 explicit VideoCaptureCapabilityWin(int index) 20 explicit VideoCaptureCapabilityWin(int index)
21 : stream_index(index), 21 : stream_index(index),
22 frame_rate_numerator(0), 22 frame_rate_numerator(0),
23 frame_rate_denominator(1) {} 23 frame_rate_denominator(1) {}
24 int stream_index; 24 int stream_index;
25 // Internally to Media Foundation Api type devices we use rational framerates 25 // Internally to Media Foundation Api type devices we use rational framerates
26 // so framerates can be properly represented, f.i. 29.971fps= 30000/1001. 26 // so framerates can be properly represented, f.i. 29.971fps= 30000/1001.
27 int frame_rate_numerator; 27 int frame_rate_numerator;
28 int frame_rate_denominator; 28 int frame_rate_denominator;
29 VideoCaptureFormat supported_format;
29 }; 30 };
30 31
31 class CapabilityList : public base::NonThreadSafe { 32 class CapabilityList : public base::NonThreadSafe {
32 public: 33 public:
33 CapabilityList(); 34 CapabilityList();
34 ~CapabilityList(); 35 ~CapabilityList();
35 36
36 bool empty() const { return capabilities_.empty(); } 37 bool empty() const { return capabilities_.empty(); }
37 38
38 // Appends an entry to the list. 39 // Appends an entry to the list.
39 void Add(const VideoCaptureCapabilityWin& capability); 40 void Add(const VideoCaptureCapabilityWin& capability);
40 41
41 // Loops through the list of capabilities and returns an index of the best 42 // Loops through the list of capabilities and returns an index of the best
42 // matching capability. The algorithm prioritizes height, width, frame rate 43 // matching capability. The algorithm prioritizes height, width, frame rate
43 // and color format in that order. 44 // and color format in that order.
44 const VideoCaptureCapabilityWin& GetBestMatchedCapability( 45 const VideoCaptureCapabilityWin& GetBestMatchedFormat(
45 int requested_width, int requested_height, 46 int requested_width,
47 int requested_height,
46 int requested_frame_rate) const; 48 int requested_frame_rate) const;
47 49
48 private: 50 private:
49 typedef std::list<VideoCaptureCapabilityWin> Capabilities; 51 typedef std::list<VideoCaptureCapabilityWin> Capabilities;
50 Capabilities capabilities_; 52 Capabilities capabilities_;
51 53
52 DISALLOW_COPY_AND_ASSIGN(CapabilityList); 54 DISALLOW_COPY_AND_ASSIGN(CapabilityList);
53 }; 55 };
54 56
55 } // namespace media 57 } // namespace media
56 58
57 #endif // MEDIA_VIDEO_CAPTURE_WIN_CAPABILITY_LIST_WIN_H_ 59 #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