yuv2rgb_mlib.c

来自「基于linux的DVD播放器程序」· C语言 代码 · 共 78 行

C
78
字号
/* Ogle - A video player * Copyright (C) 2000, 2001 H錵an Hjort * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#include <stdio.h>#include <stdlib.h>#include <inttypes.h>#include "yuv2rgb.h"#include <mlib_types.h>#include <mlib_status.h>#include <mlib_sys.h>#include <mlib_video.h>void mlib_YUV2ARGB420_32(uint8_t* image, const uint8_t* py, const uint8_t* pu,			 const uint8_t* pv, const int h_size,			 const int v_size, const int rgb_stride,			 const int y_stride, const int uv_stride) {  mlib_VideoColorYUV2ARGB420(image, py, pu, pv, h_size,			     v_size, rgb_stride, y_stride, uv_stride);}void mlib_YUV2ABGR420_32(uint8_t* image, const uint8_t* py, const uint8_t* pu,			 const uint8_t* pv, const int h_size,			 const int v_size, const int rgb_stride,			 const int y_stride, const int uv_stride){  mlib_VideoColorYUV2ABGR420(image, py, pu, pv, h_size,			     v_size, rgb_stride, y_stride, uv_stride);}void mlib_YUV2RGB420_24(uint8_t* image, const uint8_t* py, const uint8_t* pu,			const uint8_t* pv, const int h_size,			const int v_size, const int rgb_stride,			const int y_stride, const int uv_stride){  mlib_VideoColorYUV2RGB420(image, py, pu, pv, h_size,			    v_size, rgb_stride, y_stride, uv_stride);}yuv2rgb_fun yuv2rgb_mlib_init(int bpp, int mode) {    fprintf(stderr, "Using mediaLib for colorspace convertion\n");   if( bpp == 24 ) {    if( mode == MODE_RGB )      return mlib_YUV2RGB420_24;  }    if( bpp == 32 ) {    if( mode == MODE_RGB )      return mlib_YUV2ARGB420_32;    else if( mode == MODE_BGR )      return mlib_YUV2ABGR420_32;  }    return NULL; // Fallback to C.}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?