1/*
2 *  Copyright (c) 2012 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_VIE_FILE_IMAGE_H_
12#define WEBRTC_VIDEO_ENGINE_VIE_FILE_IMAGE_H_
13
14#include "webrtc/common_video/interface/i420_video_frame.h"
15#include "webrtc/typedefs.h"
16#include "webrtc/video_engine/include/vie_file.h"
17
18namespace webrtc {
19
20class ViEFileImage {
21 public:
22  static int ConvertJPEGToVideoFrame(int engine_id,
23                                     const char* file_nameUTF8,
24                                     I420VideoFrame* video_frame);
25  static int ConvertPictureToI420VideoFrame(int engine_id,
26                                            const ViEPicture& picture,
27                                            I420VideoFrame* video_frame);
28};
29
30}  // namespace webrtc
31
32#endif  // WEBRTC_VIDEO_ENGINE_VIE_FILE_IMAGE_H_
33