Chromium Code Reviews| Index: media/video/capture/win/capability_list_win.cc |
| diff --git a/media/video/capture/win/capability_list_win.cc b/media/video/capture/win/capability_list_win.cc |
| index 9b4531b82820107c2908b61dd6fe0ddfdf366d4d..7f5884d90b42bd18576b514c9b5220b346c147db 100644 |
| --- a/media/video/capture/win/capability_list_win.cc |
| +++ b/media/video/capture/win/capability_list_win.cc |
| @@ -6,115 +6,34 @@ |
| #include <algorithm> |
| -#include "base/logging.h" |
| - |
| namespace media { |
| namespace { |
| -// Help structure used for comparing video capture capabilities. |
| -struct ResolutionDiff { |
| - const VideoCaptureCapabilityWin* capability; |
| - int diff_height; |
| - int diff_width; |
| - int diff_frame_rate; |
| -}; |
| - |
| -bool CompareHeight(const ResolutionDiff& item1, const ResolutionDiff& item2) { |
| - return abs(item1.diff_height) < abs(item2.diff_height); |
| -} |
| +// Comparison function object for VideoCaptureCapabilityWin such that |
| +// std::min_element can be used. It is a wrapper around CompareVideoFormat. |
| +class CompareVideoFormatWin { |
| + public: |
| + CompareVideoFormatWin(const VideoCaptureFormat& requested) |
| + : compare_video_format_(requested) {} |
| -bool CompareWidth(const ResolutionDiff& item1, const ResolutionDiff& item2) { |
| - return abs(item1.diff_width) < abs(item2.diff_width); |
| -} |
| - |
| -bool CompareFrameRate(const ResolutionDiff& item1, |
| - const ResolutionDiff& item2) { |
| - return abs(item1.diff_frame_rate) < abs(item2.diff_frame_rate); |
| -} |
| - |
| -bool CompareColor(const ResolutionDiff& item1, const ResolutionDiff& item2) { |
| - return item1.capability->supported_format.pixel_format < |
| - item2.capability->supported_format.pixel_format; |
| -} |
| - |
| -} // namespace. |
| - |
| -CapabilityList::CapabilityList() { |
| - DetachFromThread(); |
| -} |
| - |
| -CapabilityList::~CapabilityList() {} |
| - |
| -// Appends an entry to the list. |
| -void CapabilityList::Add(const VideoCaptureCapabilityWin& capability) { |
| - DCHECK(CalledOnValidThread()); |
| - capabilities_.push_back(capability); |
| -} |
| - |
| -const VideoCaptureCapabilityWin& CapabilityList::GetBestMatchedFormat( |
| - int requested_width, |
| - int requested_height, |
| - float requested_frame_rate) const { |
| - DCHECK(CalledOnValidThread()); |
| - DCHECK(!capabilities_.empty()); |
| - |
| - std::list<ResolutionDiff> diff_list; |
| - |
| - // Loop through the candidates to create a list of differentials between the |
| - // requested resolution and the camera capability. |
| - for (Capabilities::const_iterator it = capabilities_.begin(); |
| - it != capabilities_.end(); ++it) { |
| - ResolutionDiff diff; |
| - diff.capability = &(*it); |
| - diff.diff_width = it->supported_format.frame_size.width() - requested_width; |
| - diff.diff_height = |
| - it->supported_format.frame_size.height() - requested_height; |
| - // The 1000 allows using integer arithmetic for f.i. 29.971 fps. |
| - diff.diff_frame_rate = |
| - 1000 * ((static_cast<float>(it->frame_rate_numerator) / |
| - it->frame_rate_denominator) - |
| - requested_frame_rate); |
| - diff_list.push_back(diff); |
| + bool operator()(const VideoCaptureCapabilityWin& lhs, |
| + const VideoCaptureCapabilityWin& rhs) const { |
| + return compare_video_format_(lhs.second, rhs.second); |
|
tommi (sloooow) - chröme
2014/09/09 20:11:11
is there a way to avoid using operator overloading
|
| } |
| - // Sort the best height candidates. |
| - diff_list.sort(&CompareHeight); |
| - int best_diff = diff_list.front().diff_height; |
| - for (std::list<ResolutionDiff>::iterator it = diff_list.begin(); |
| - it != diff_list.end(); ++it) { |
| - if (it->diff_height != best_diff) { |
| - // Remove all candidates but the best. |
| - diff_list.erase(it, diff_list.end()); |
| - break; |
| - } |
| - } |
| - |
| - // Sort the best width candidates. |
| - diff_list.sort(&CompareWidth); |
| - best_diff = diff_list.front().diff_width; |
| - for (std::list<ResolutionDiff>::iterator it = diff_list.begin(); |
| - it != diff_list.end(); ++it) { |
| - if (it->diff_width != best_diff) { |
| - // Remove all candidates but the best. |
| - diff_list.erase(it, diff_list.end()); |
| - break; |
| - } |
| - } |
| + private: |
| + const CompareVideoFormat compare_video_format_; |
| +}; |
| - // Sort the best frame rate candidates. |
| - diff_list.sort(&CompareFrameRate); |
| - best_diff = diff_list.front().diff_frame_rate; |
| - for (std::list<ResolutionDiff>::iterator it = diff_list.begin(); |
| - it != diff_list.end(); ++it) { |
| - if (it->diff_frame_rate != best_diff) { |
| - diff_list.erase(it, diff_list.end()); |
| - break; |
| - } |
| - } |
| +} // namespace. |
| - // Decide the best color format. |
| - diff_list.sort(&CompareColor); |
| - return *diff_list.front().capability; |
| +CapabilityList::const_iterator GetBestMatchedFormat( |
| + const VideoCaptureFormat& requested, |
| + const CapabilityList& capabilities) { |
| + // Find the format with the minimum difference to the requested format. |
| + return std::min_element(capabilities.begin(), |
| + capabilities.end(), |
| + CompareVideoFormatWin(requested)); |
| } |
| } // namespace media |