blob: 1b5e1affcdc6b36a60015761ad0cc4987e0d051d [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
mflodman@webrtc.org8baed512012-06-21 12:11:50 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00003 *
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.orge06ca3c2012-06-29 13:20:14 +000011#ifndef WEBRTC_VIDEO_ENGINE_VIE_FILE_IMAGE_H_
12#define WEBRTC_VIDEO_ENGINE_VIE_FILE_IMAGE_H_
niklase@google.com470e71d2011-07-07 08:21:25 +000013
pbos@webrtc.orgf5d4cb12013-05-17 13:44:48 +000014#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.com470e71d2011-07-07 08:21:25 +000017
mflodman@webrtc.org352dcd82011-12-16 08:52:41 +000018namespace webrtc {
19
20class ViEFileImage {
21 public:
22 static int ConvertJPEGToVideoFrame(int engine_id,
23 const char* file_nameUTF8,
mikhal@webrtc.org9fedff72012-10-24 18:33:04 +000024 I420VideoFrame* video_frame);
25 static int ConvertPictureToI420VideoFrame(int engine_id,
26 const ViEPicture& picture,
27 I420VideoFrame* video_frame);
mflodman@webrtc.org352dcd82011-12-16 08:52:41 +000028};
29
30} // namespace webrtc
31
mflodman@webrtc.orge06ca3c2012-06-29 13:20:14 +000032#endif // WEBRTC_VIDEO_ENGINE_VIE_FILE_IMAGE_H_