yuv2rgb_mlib.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /* 
  2.  * yuv2rgb_mlib.c, Software YUV to RGB coverter using mediaLib
  3.  *
  4.  *  Copyright (C) 2000, H錵an Hjort <d95hjort@dtek.chalmers.se>
  5.  *  All Rights Reserved.
  6.  *
  7.  *  This file is part of mpeg2dec, a free MPEG-2 video decoder
  8.  *
  9.  *  mpeg2dec is free software; you can redistribute it and/or modify
  10.  *  it under the terms of the GNU General Public License as published by
  11.  *  the Free Software Foundation; either version 2, or (at your option)
  12.  *  any later version.
  13.  *
  14.  *  mpeg2dec is distributed in the hope that it will be useful,
  15.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  *  GNU General Public License for more details.
  18.  *
  19.  *  You should have received a copy of the GNU General Public License
  20.  *  along with GNU Make; see the file COPYING.  If not, write to
  21.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  *
  23.  */
  24. #include <mlib_types.h>
  25. #include <mlib_status.h>
  26. #include <mlib_sys.h>
  27. #include <mlib_video.h>
  28. #include <inttypes.h>
  29. #include <stdlib.h>
  30. #include <assert.h>
  31. #include "img_format.h" //FIXME try to reduce dependency of such stuff
  32. #include "swscale.h"
  33. static int mlib_YUV2ARGB420_32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, 
  34.              int srcSliceH, uint8_t* dst[], int dstStride[]){
  35.     if(c->srcFormat == IMGFMT_422P){
  36. srcStride[1] *= 2;
  37. srcStride[2] *= 2;
  38.     }
  39.     
  40.     assert(srcStride[1] == srcStride[2]);
  41.  
  42.     mlib_VideoColorYUV2ARGB420(dst[0]+srcSliceY*dstStride[0], src[0], src[1], src[2], c->dstW,
  43.      srcSliceH, dstStride[0], srcStride[0], srcStride[1]);
  44.     return srcSliceH;
  45. }
  46. static int mlib_YUV2ABGR420_32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, 
  47.              int srcSliceH, uint8_t* dst[], int dstStride[]){
  48.     if(c->srcFormat == IMGFMT_422P){
  49. srcStride[1] *= 2;
  50. srcStride[2] *= 2;
  51.     }
  52.     
  53.     assert(srcStride[1] == srcStride[2]);
  54.  
  55.     mlib_VideoColorYUV2ABGR420(dst[0]+srcSliceY*dstStride[0], src[0], src[1], src[2], c->dstW,
  56.      srcSliceH, dstStride[0], srcStride[0], srcStride[1]);
  57.     return srcSliceH;
  58. }
  59. static int mlib_YUV2RGB420_24(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, 
  60.              int srcSliceH, uint8_t* dst[], int dstStride[]){
  61.     if(c->srcFormat == IMGFMT_422P){
  62. srcStride[1] *= 2;
  63. srcStride[2] *= 2;
  64.     }
  65.     
  66.     assert(srcStride[1] == srcStride[2]);
  67.  
  68.     mlib_VideoColorYUV2RGB420(dst[0]+srcSliceY*dstStride[0], src[0], src[1], src[2], c->dstW,
  69.      srcSliceH, dstStride[0], srcStride[0], srcStride[1]);
  70.     return srcSliceH;
  71. }
  72. SwsFunc yuv2rgb_init_mlib(SwsContext *c) 
  73. {
  74. switch(c->dstFormat){
  75. case IMGFMT_RGB24: return mlib_YUV2RGB420_24;
  76. case IMGFMT_RGB32: return mlib_YUV2ARGB420_32;
  77. case IMGFMT_BGR32: return mlib_YUV2ABGR420_32;
  78. default: return NULL;
  79. }
  80. }