Home
last modified time | relevance | path

Searched refs:highest_format (Results 1 – 1 of 1) sorted by relevance

/external/webrtc/talk/media/base/
Dcapturemanager.cc131 VideoFormat highest_format(0, 0, VideoFormat::FpsToInterval(1), FOURCC_ANY); in GetHighestFormat() local
138 if (iter->video_format.width > highest_format.width) { in GetHighestFormat()
139 highest_format.width = iter->video_format.width; in GetHighestFormat()
141 if (iter->video_format.height > highest_format.height) { in GetHighestFormat()
142 highest_format.height = iter->video_format.height; in GetHighestFormat()
144 if (iter->video_format.interval < highest_format.interval) { in GetHighestFormat()
145 highest_format.interval = iter->video_format.interval; in GetHighestFormat()
148 return highest_format; in GetHighestFormat()