HomeSort by relevance Sort by last modified time
    Searched full:capturedframe (Results 1 - 25 of 27) sorted by null

1 2

  /external/webrtc/talk/media/webrtc/
webrtcvideoframefactory_unittest.cc 43 // Build the CapturedFrame.
86 const cricket::CapturedFrame& captured_frame = get_captured_frame();
87 // Create the new frame from the CapturedFrame.
110 const cricket::CapturedFrame& get_captured_frame() { return captured_frame_; }
113 cricket::CapturedFrame captured_frame_;
webrtcvideoframefactory.h 35 struct CapturedFrame;
40 VideoFrame* CreateAliasedFrame(const CapturedFrame* aliased_frame,
webrtcvideoframe.h 40 struct CapturedFrame;
67 bool Init(const CapturedFrame* frame, int dw, int dh, bool apply_rotation);
webrtcvideoframefactory.cc 35 const CapturedFrame* aliased_frame, int width, int height) const {
webrtcvideoframe_unittest.cc 64 // Build the CapturedFrame.
65 cricket::CapturedFrame captured_frame;
81 // Create the new frame from the CapturedFrame.
webrtcvideocapturer.h 106 struct WebRtcCapturedFrame : public CapturedFrame {
webrtcvideocapturer.cc 417 // The CapturedFrame class doesn't support planes. We have to ExtractBuffer
439 // Convert units from VideoFrame RenderTimeMs to CapturedFrame (nanoseconds).
webrtcvideoframe.cc 77 bool WebRtcVideoFrame::Init(const CapturedFrame* frame, int dw, int dh,
webrtcvideoengine2.h 75 struct CapturedFrame;
  /external/webrtc/talk/media/devices/
filevideocapturer.h 32 // CapturedFrame, followed by the frame data.
68 bool RecordFrame(const CapturedFrame& frame);
128 rtc::StreamResult ReadFrameHeader(CapturedFrame* frame);
135 // Return the CapturedFrame - useful for extracting contents after reading
137 // the CapturedFrame object still exists).
138 const CapturedFrame* frame() const {
147 CapturedFrame captured_frame_;
filevideocapturer.cc 57 bool VideoRecorder::RecordFrame(const CapturedFrame& frame) {
193 CapturedFrame frame;
280 CapturedFrame* frame) {
284 char header[CapturedFrame::kFrameHeaderSize];
289 CapturedFrame::kFrameHeaderSize,
295 if (CapturedFrame::kFrameHeaderSize != bytes_read) {
298 rtc::ByteBuffer buffer(header, CapturedFrame::kFrameHeaderSize);
yuvframescapturer.h 82 CapturedFrame captured_frame_;
filevideocapturer_unittest.cc 62 const cricket::CapturedFrame* frame) {
  /external/webrtc/talk/media/base/
videoframefactory.h 36 struct CapturedFrame;
52 virtual VideoFrame* CreateAliasedFrame(const CapturedFrame* input_frame,
59 virtual VideoFrame* CreateAliasedFrame(const CapturedFrame* input_frame,
videocapturer.cc 75 // Implementation of struct CapturedFrame
77 CapturedFrame::CapturedFrame()
89 bool CapturedFrame::GetDataSize(uint32_t* size) const {
90 if (!size || data_size == CapturedFrame::kUnknownDataSize) {
307 std::string VideoCapturer::ToString(const CapturedFrame* captured_frame) const {
344 const CapturedFrame* captured_frame) {
379 CapturedFrame* modified_frame =
380 const_cast<CapturedFrame*>(captured_frame);
422 CapturedFrame* modified_frame = const_cast<CapturedFrame*>(captured_frame)
    [all...]
videocapturer.h 70 struct CapturedFrame {
74 CapturedFrame();
99 RTC_DISALLOW_COPY_AND_ASSIGN(CapturedFrame);
258 sigslot::signal2<VideoCapturer*, const CapturedFrame*,
292 const CapturedFrame* captured_frame);
329 std::string ToString(const CapturedFrame* frame) const;
337 void UpdateStats(const CapturedFrame* captured_frame);
videoframefactory.cc 36 const CapturedFrame* input_frame,
fakevideocapturer.h 112 cricket::CapturedFrame frame;
135 void SignalCapturedFrame(cricket::CapturedFrame* frame) {
testutils.h 146 void OnFrameCaptured(VideoCapturer* capturer, const CapturedFrame* frame);
testutils.cc 249 const CapturedFrame* frame) {
videocapturer_unittest.cc 734 // provide OnVideoFrame-callbacks since they require cricket::CapturedFrame to
    [all...]
videoadapter_unittest.cc 95 const CapturedFrame* captured_frame) {
    [all...]
  /external/webrtc/talk/app/webrtc/
androidvideocapturer.cc 48 // Create a CapturedFrame that only contains header information, not the
53 captured_frame_.data_size = cricket::CapturedFrame::kUnknownDataSize;
77 const cricket::CapturedFrame* GetCapturedFrame() const {
82 const cricket::CapturedFrame* captured_frame,
99 const cricket::CapturedFrame* input_frame,
126 cricket::CapturedFrame captured_frame_;
  /external/webrtc/talk/app/webrtc/objc/
avfoundationvideocapturer.h 64 // Converts the sample buffer into a cricket::CapturedFrame and signals the
70 void SignalFrameCapturedOnStartThread(const cricket::CapturedFrame* frame);
avfoundationvideocapturer.mm 407 // Stuff data into a cricket::CapturedFrame.
409 cricket::CapturedFrame frame;
430 const cricket::CapturedFrame* frame) {

Completed in 1412 milliseconds

1 2