Home | History | Annotate | Download | only in codec

Lines Matching refs:frame

17     const webrtc::DesktopFrame& frame) {
18 return CreateVideoPacketWithUpdatedRegion(frame, frame.updated_region());
23 const webrtc::DesktopFrame& frame,
28 if (!frame.size().equals(screen_size_)) {
29 screen_size_ = frame.size();
47 // Record the shape of the frame, if specified.
48 if (frame.shape()) {
50 for (webrtc::DesktopRegion::Iterator r(*frame.shape());
60 // Store the capture time and frame DPI.
61 packet->set_capture_time_ms(frame.capture_time_ms());
62 if (!frame.dpi().is_zero()) {
63 packet->mutable_format()->set_x_dpi(frame.dpi().x());
64 packet->mutable_format()->set_y_dpi(frame.dpi().y());