mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.8 KiB
86 lines
2.8 KiB
18 years ago
|
/*
|
||
17 years ago
|
* software YUV to RGB converter using mediaLib
|
||
|
*
|
||
18 years ago
|
* Copyright (C) 2003 Michael Niedermayer <michaelni@gmx.at>
|
||
23 years ago
|
*
|
||
18 years ago
|
* This file is part of FFmpeg.
|
||
23 years ago
|
*
|
||
18 years ago
|
* FFmpeg is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2.1 of the License, or (at your option) any later version.
|
||
23 years ago
|
*
|
||
18 years ago
|
* FFmpeg is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Lesser General Public License for more details.
|
||
23 years ago
|
*
|
||
18 years ago
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with FFmpeg; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
23 years ago
|
*/
|
||
|
|
||
|
#include <mlib_types.h>
|
||
|
#include <mlib_status.h>
|
||
|
#include <mlib_sys.h>
|
||
|
#include <mlib_video.h>
|
||
22 years ago
|
#include <inttypes.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <assert.h>
|
||
23 years ago
|
|
||
16 years ago
|
#include "libswscale/swscale.h"
|
||
23 years ago
|
|
||
18 years ago
|
static int mlib_YUV2ARGB420_32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
|
||
18 years ago
|
int srcSliceH, uint8_t* dst[], int dstStride[]){
|
||
19 years ago
|
if(c->srcFormat == PIX_FMT_YUV422P){
|
||
18 years ago
|
srcStride[1] *= 2;
|
||
|
srcStride[2] *= 2;
|
||
22 years ago
|
}
|
||
18 years ago
|
|
||
22 years ago
|
assert(srcStride[1] == srcStride[2]);
|
||
18 years ago
|
|
||
22 years ago
|
mlib_VideoColorYUV2ARGB420(dst[0]+srcSliceY*dstStride[0], src[0], src[1], src[2], c->dstW,
|
||
18 years ago
|
srcSliceH, dstStride[0], srcStride[0], srcStride[1]);
|
||
22 years ago
|
return srcSliceH;
|
||
23 years ago
|
}
|
||
|
|
||
18 years ago
|
static int mlib_YUV2ABGR420_32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
|
||
18 years ago
|
int srcSliceH, uint8_t* dst[], int dstStride[]){
|
||
19 years ago
|
if(c->srcFormat == PIX_FMT_YUV422P){
|
||
18 years ago
|
srcStride[1] *= 2;
|
||
|
srcStride[2] *= 2;
|
||
22 years ago
|
}
|
||
18 years ago
|
|
||
22 years ago
|
assert(srcStride[1] == srcStride[2]);
|
||
18 years ago
|
|
||
22 years ago
|
mlib_VideoColorYUV2ABGR420(dst[0]+srcSliceY*dstStride[0], src[0], src[1], src[2], c->dstW,
|
||
18 years ago
|
srcSliceH, dstStride[0], srcStride[0], srcStride[1]);
|
||
22 years ago
|
return srcSliceH;
|
||
23 years ago
|
}
|
||
|
|
||
18 years ago
|
static int mlib_YUV2RGB420_24(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
|
||
18 years ago
|
int srcSliceH, uint8_t* dst[], int dstStride[]){
|
||
19 years ago
|
if(c->srcFormat == PIX_FMT_YUV422P){
|
||
18 years ago
|
srcStride[1] *= 2;
|
||
|
srcStride[2] *= 2;
|
||
22 years ago
|
}
|
||
18 years ago
|
|
||
22 years ago
|
assert(srcStride[1] == srcStride[2]);
|
||
18 years ago
|
|
||
22 years ago
|
mlib_VideoColorYUV2RGB420(dst[0]+srcSliceY*dstStride[0], src[0], src[1], src[2], c->dstW,
|
||
18 years ago
|
srcSliceH, dstStride[0], srcStride[0], srcStride[1]);
|
||
22 years ago
|
return srcSliceH;
|
||
22 years ago
|
}
|
||
23 years ago
|
|
||
|
|
||
16 years ago
|
SwsFunc ff_yuv2rgb_init_mlib(SwsContext *c)
|
||
22 years ago
|
{
|
||
18 years ago
|
switch(c->dstFormat){
|
||
|
case PIX_FMT_RGB24: return mlib_YUV2RGB420_24;
|
||
|
case PIX_FMT_BGR32: return mlib_YUV2ARGB420_32;
|
||
|
case PIX_FMT_RGB32: return mlib_YUV2ABGR420_32;
|
||
|
default: return NULL;
|
||
|
}
|
||
23 years ago
|
}
|
||
|
|