mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-07 17:26:49 +08:00
Review URL: http://webrtc-codereview.appspot.com/217007 git-svn-id: http://libyuv.googlecode.com/svn/trunk@22 16f28f9a-4ce2-e073-06de-1de4eb20be90
110 lines
3.6 KiB
C++
110 lines
3.6 KiB
C++
/*
|
|
* Copyright (c) 2011 The LibYuv project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
|
|
#ifndef LIBYUV_INCLUDE_CONVERT_H_
|
|
#define LIBYUV_INCLUDE_CONVERT_H_
|
|
|
|
#include "basic_types.h"
|
|
|
|
namespace libyuv {
|
|
|
|
int
|
|
I420ToRGB24(const uint8* src_yplane, int src_ystride,
|
|
const uint8* src_uplane, int src_ustride,
|
|
const uint8* src_vplane, int src_vstride,
|
|
uint8* dst_frame, int dst_stride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
I420ToARGB4444(const uint8* src_yplane, int src_ystride,
|
|
const uint8* src_uplane, int src_ustride,
|
|
const uint8* src_vplane, int src_vstride,
|
|
uint8* dst_frame, int dst_stride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
I420ToRGB565(const uint8* src_yplane, int src_ystride,
|
|
const uint8* src_uplane, int src_ustride,
|
|
const uint8* src_vplane, int src_vstride,
|
|
uint8* dst_frame, int dst_stride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
I420ToARGB1555(const uint8* src_yplane, int src_ystride,
|
|
const uint8* src_uplane, int src_ustride,
|
|
const uint8* src_vplane, int src_vstride,
|
|
uint8* dst_frame, int dst_stride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
I420ToYUY2(const uint8* src_yplane, int src_ystride,
|
|
const uint8* src_uplane, int src_ustride,
|
|
const uint8* src_vplane, int src_vstride,
|
|
uint8* dst_frame, int dst_stride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
I420ToUYVY(const uint8* src_yplane, int src_ystride,
|
|
const uint8* src_uplane, int src_ustride,
|
|
const uint8* src_vplane, int src_vstride,
|
|
uint8* dst_frame, int dst_stride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
RGB24ToARGB(const uint8* src_frame, int src_stride,
|
|
uint8* dst_frame, int dst_stride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
RGB24ToI420(const uint8* src_frame, int src_stride,
|
|
uint8* dst_yplane, int dst_ystride,
|
|
uint8* dst_uplane, int dst_ustride,
|
|
uint8* dst_vplane, int dst_vstride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
RAWToI420(const uint8* src_frame, int src_stride,
|
|
uint8* dst_yplane, int dst_ystride,
|
|
uint8* dst_uplane, int dst_ustride,
|
|
uint8* dst_vplane, int dst_vstride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
ABGRToI420(const uint8* src_frame, int src_stride,
|
|
uint8* dst_yplane, int dst_ystride,
|
|
uint8* dst_uplane, int dst_ustride,
|
|
uint8* dst_vplane, int dst_vstride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
BGRAToI420(const uint8* src_frame, int src_stride,
|
|
uint8* dst_yplane, int dst_ystride,
|
|
uint8* dst_uplane, int dst_ustride,
|
|
uint8* dst_vplane, int dst_vstride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
ARGBToI420(const uint8* src_frame, int src_stride,
|
|
uint8* dst_yplane, int dst_ystride,
|
|
uint8* dst_uplane, int dst_ustride,
|
|
uint8* dst_vplane, int dst_vstride,
|
|
int src_width, int src_height);
|
|
|
|
int
|
|
NV12ToRGB565(const uint8* src_yplane, int src_ystride,
|
|
const uint8* src_uvplane, int src_uvstride,
|
|
uint8* dst_frame, int dst_stride,
|
|
int src_width, int src_height);
|
|
|
|
} // namespace libyuv
|
|
|
|
#endif // LIBYUV_INCLUDE_CONVERT_H_
|