niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
mflodman@webrtc.org | 8baed51 | 2012-06-21 12:11:50 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 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 | |
mflodman@webrtc.org | e06ca3c | 2012-06-29 13:20:14 +0000 | [diff] [blame] | 11 | #ifndef WEBRTC_VIDEO_ENGINE_VIE_FILE_IMAGE_H_ |
| 12 | #define WEBRTC_VIDEO_ENGINE_VIE_FILE_IMAGE_H_ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 13 | |
pbos@webrtc.org | f5d4cb1 | 2013-05-17 13:44:48 +0000 | [diff] [blame] | 14 | #include "webrtc/common_video/interface/i420_video_frame.h" |
| 15 | #include "webrtc/typedefs.h" |
| 16 | #include "webrtc/video_engine/include/vie_file.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 17 | |
mflodman@webrtc.org | 352dcd8 | 2011-12-16 08:52:41 +0000 | [diff] [blame] | 18 | namespace webrtc { |
| 19 | |
| 20 | class ViEFileImage { |
| 21 | public: |
| 22 | static int ConvertJPEGToVideoFrame(int engine_id, |
| 23 | const char* file_nameUTF8, |
mikhal@webrtc.org | 9fedff7 | 2012-10-24 18:33:04 +0000 | [diff] [blame] | 24 | I420VideoFrame* video_frame); |
| 25 | static int ConvertPictureToI420VideoFrame(int engine_id, |
| 26 | const ViEPicture& picture, |
| 27 | I420VideoFrame* video_frame); |
mflodman@webrtc.org | 352dcd8 | 2011-12-16 08:52:41 +0000 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | } // namespace webrtc |
| 31 | |
mflodman@webrtc.org | e06ca3c | 2012-06-29 13:20:14 +0000 | [diff] [blame] | 32 | #endif // WEBRTC_VIDEO_ENGINE_VIE_FILE_IMAGE_H_ |