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.

87 lines
2.7KB

  1. /*
  2. * yuv2rgb_mlib.c, Software YUV to RGB coverter using mediaLib
  3. *
  4. * Copyright (C) 2000, HÃ¥kan 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 mpeg2dec; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include <mlib_types.h>
  24. #include <mlib_status.h>
  25. #include <mlib_sys.h>
  26. #include <mlib_video.h>
  27. #include <inttypes.h>
  28. #include <stdlib.h>
  29. #include <assert.h>
  30. #include "swscale.h"
  31. static int mlib_YUV2ARGB420_32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
  32. int srcSliceH, uint8_t* dst[], int dstStride[]){
  33. if(c->srcFormat == PIX_FMT_YUV422P){
  34. srcStride[1] *= 2;
  35. srcStride[2] *= 2;
  36. }
  37. assert(srcStride[1] == srcStride[2]);
  38. mlib_VideoColorYUV2ARGB420(dst[0]+srcSliceY*dstStride[0], src[0], src[1], src[2], c->dstW,
  39. srcSliceH, dstStride[0], srcStride[0], srcStride[1]);
  40. return srcSliceH;
  41. }
  42. static int mlib_YUV2ABGR420_32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
  43. int srcSliceH, uint8_t* dst[], int dstStride[]){
  44. if(c->srcFormat == PIX_FMT_YUV422P){
  45. srcStride[1] *= 2;
  46. srcStride[2] *= 2;
  47. }
  48. assert(srcStride[1] == srcStride[2]);
  49. mlib_VideoColorYUV2ABGR420(dst[0]+srcSliceY*dstStride[0], src[0], src[1], src[2], c->dstW,
  50. srcSliceH, dstStride[0], srcStride[0], srcStride[1]);
  51. return srcSliceH;
  52. }
  53. static int mlib_YUV2RGB420_24(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
  54. int srcSliceH, uint8_t* dst[], int dstStride[]){
  55. if(c->srcFormat == PIX_FMT_YUV422P){
  56. srcStride[1] *= 2;
  57. srcStride[2] *= 2;
  58. }
  59. assert(srcStride[1] == srcStride[2]);
  60. mlib_VideoColorYUV2RGB420(dst[0]+srcSliceY*dstStride[0], src[0], src[1], src[2], c->dstW,
  61. srcSliceH, dstStride[0], srcStride[0], srcStride[1]);
  62. return srcSliceH;
  63. }
  64. SwsFunc yuv2rgb_init_mlib(SwsContext *c)
  65. {
  66. switch(c->dstFormat){
  67. case PIX_FMT_RGB24: return mlib_YUV2RGB420_24;
  68. case PIX_FMT_BGR32: return mlib_YUV2ARGB420_32;
  69. case PIX_FMT_RGB32: return mlib_YUV2ABGR420_32;
  70. default: return NULL;
  71. }
  72. }