Home | History | Annotate | Download | only in base

Lines Matching refs:format

22     VideoFrame::Format format,
27 DCHECK(IsValidConfig(format, coded_size, visible_rect, natural_size));
29 format, coded_size, visible_rect, natural_size, timestamp));
30 switch (format) {
41 LOG(FATAL) << "Unsupported frame format: " << format;
47 std::string VideoFrame::FormatToString(VideoFrame::Format format) {
48 switch (format) {
70 NOTREACHED() << "Invalid videoframe format provided: " << format;
75 bool VideoFrame::IsValidConfig(VideoFrame::Format format,
79 return (format != VideoFrame::INVALID &&
122 Format format,
130 switch (format) {
133 format, coded_size, visible_rect, natural_size, timestamp));
152 Format format,
164 DCHECK(format == YV12 || format == YV16 || format == I420) << format;
166 format, coded_size, visible_rect, natural_size, timestamp));
223 size_t VideoFrame::NumPlanes(Format format) {
224 switch (format) {
242 NOTREACHED() << "Unsupported video frame format: " << format;
326 VideoFrame::VideoFrame(VideoFrame::Format format,
331 : format_(format),
381 NOTREACHED() << "Unsupported video frame format: " << format_;
408 NOTREACHED() << "Unsupported video frame format: " << format_;