blob: 1d73f4a0472d3702f02c2e04dbca55f1c1550f85 [file] [log] [blame]
pbos@webrtc.org266d5f62013-05-29 11:34:32 +00001/*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_VIDEO_ENGINE_NEW_INCLUDE_FRAME_CALLBACK_H_
12#define WEBRTC_VIDEO_ENGINE_NEW_INCLUDE_FRAME_CALLBACK_H_
13
sprang@webrtc.orgfa7c4c42014-02-07 12:06:29 +000014#include <stddef.h>
15
sprang@webrtc.org4a9843f2013-11-26 11:41:59 +000016#include "webrtc/common_types.h"
17
pbos@webrtc.org266d5f62013-05-29 11:34:32 +000018namespace webrtc {
19
20class I420VideoFrame;
21
sprang@webrtc.org4a9843f2013-11-26 11:41:59 +000022struct EncodedFrame {
23 public:
24 EncodedFrame() : data_(NULL), length_(0), frame_type_(kFrameEmpty) {}
25 EncodedFrame(const uint8_t* data, size_t length, FrameType frame_type)
26 : data_(data), length_(length), frame_type_(frame_type) {}
27
28 const uint8_t* data_;
29 const size_t length_;
30 const FrameType frame_type_;
31};
pbos@webrtc.org266d5f62013-05-29 11:34:32 +000032
33class I420FrameCallback {
34 public:
35 // This function is called with a I420 frame allowing the user to modify the
36 // frame content.
37 virtual void FrameCallback(I420VideoFrame* video_frame) = 0;
38
39 protected:
40 virtual ~I420FrameCallback() {}
41};
42
43class EncodedFrameObserver {
44 public:
45 virtual void EncodedFrameCallback(const EncodedFrame& encoded_frame) = 0;
46
47 protected:
48 virtual ~EncodedFrameObserver() {}
49};
sprang@webrtc.org4a9843f2013-11-26 11:41:59 +000050
pbos@webrtc.org266d5f62013-05-29 11:34:32 +000051} // namespace webrtc
52
53#endif // WEBRTC_VIDEO_ENGINE_NEW_INCLUDE_FRAME_CALLBACK_H_