vf_palette.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*
  2. * This file is part of MPlayer.
  3. *
  4. * MPlayer is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * MPlayer is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along
  15. * with MPlayer; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  17. */
  18. #define _BSD_SOURCE //strcasecmp
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <inttypes.h>
  23. #include "config.h"
  24. #include "mp_msg.h"
  25. #include "help_mp.h"
  26. #include "img_format.h"
  27. #include "mp_image.h"
  28. #include "vf.h"
  29. #include "mpbswap.h"
  30. #include "libswscale/swscale.h"
  31. //===========================================================================//
  32. // commented out 16 and 15 bit output support, because the conversion
  33. // routines are incorrrect. they assume the palette to be of the same
  34. // depth as the output, which is incorrect. --Joey
  35. static const unsigned int bgr_list[]={
  36. IMGFMT_BGR32,
  37. IMGFMT_BGR24,
  38. // IMGFMT_BGR16,
  39. // IMGFMT_BGR15,
  40. 0
  41. };
  42. static const unsigned int rgb_list[]={
  43. IMGFMT_RGB32,
  44. IMGFMT_RGB24,
  45. // IMGFMT_RGB16,
  46. // IMGFMT_RGB15,
  47. 0
  48. };
  49. /**
  50. * Palette is assumed to contain BGR16, see rgb32to16 to convert the palette.
  51. */
  52. static void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  53. {
  54. long i;
  55. for (i=0; i<num_pixels; i++)
  56. ((uint16_t *)dst)[i] = ((const uint16_t *)palette)[src[i]];
  57. }
  58. static void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  59. {
  60. long i;
  61. for (i=0; i<num_pixels; i++)
  62. ((uint16_t *)dst)[i] = bswap_16(((const uint16_t *)palette)[src[i]]);
  63. }
  64. static unsigned int gray_pal[256];
  65. static unsigned int find_best(struct vf_instance *vf, unsigned int fmt){
  66. unsigned int best=0;
  67. int ret;
  68. const unsigned int* p;
  69. if(fmt==IMGFMT_BGR8) p=bgr_list;
  70. else if(fmt==IMGFMT_RGB8) p=rgb_list;
  71. else return 0;
  72. while(*p){
  73. ret=vf->next->query_format(vf->next,*p);
  74. mp_msg(MSGT_VFILTER,MSGL_DBG2,"[%s] query(%s) -> %d\n",vf->info->name,vo_format_name(*p),ret&3);
  75. if(ret&VFCAP_CSP_SUPPORTED_BY_HW){ best=*p; break;} // no conversion -> bingo!
  76. if(ret&VFCAP_CSP_SUPPORTED && !best) best=*p; // best with conversion
  77. ++p;
  78. }
  79. return best;
  80. }
  81. //===========================================================================//
  82. struct vf_priv_s {
  83. unsigned int fmt;
  84. int pal_msg;
  85. };
  86. static int config(struct vf_instance *vf,
  87. int width, int height, int d_width, int d_height,
  88. unsigned int flags, unsigned int outfmt){
  89. if (!vf->priv->fmt)
  90. vf->priv->fmt=find_best(vf,outfmt);
  91. if(!vf->priv->fmt){
  92. // no matching fmt, so force one...
  93. if(outfmt==IMGFMT_RGB8) vf->priv->fmt=IMGFMT_RGB32;
  94. else if(outfmt==IMGFMT_BGR8) vf->priv->fmt=IMGFMT_BGR32;
  95. else return 0;
  96. }
  97. return vf_next_config(vf,width,height,d_width,d_height,flags,vf->priv->fmt);
  98. }
  99. static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){
  100. mp_image_t *dmpi;
  101. uint8_t *old_palette = mpi->planes[1];
  102. // hope we'll get DR buffer:
  103. dmpi=vf_get_image(vf->next,vf->priv->fmt,
  104. MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
  105. mpi->w, mpi->h);
  106. if (!mpi->planes[1])
  107. {
  108. if(!vf->priv->pal_msg){
  109. mp_msg(MSGT_VFILTER,MSGL_V,"[%s] no palette given, assuming builtin grayscale one\n",vf->info->name);
  110. vf->priv->pal_msg=1;
  111. }
  112. mpi->planes[1] = (unsigned char*)gray_pal;
  113. }
  114. if(mpi->w==mpi->stride[0] && dmpi->w*(dmpi->bpp>>3)==dmpi->stride[0]){
  115. // no stride conversion needed
  116. switch(IMGFMT_RGB_DEPTH(dmpi->imgfmt)){
  117. case 15:
  118. case 16:
  119. if (IMGFMT_IS_BGR(dmpi->imgfmt))
  120. palette8tobgr16(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
  121. else
  122. palette8torgb16(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
  123. break;
  124. case 24:
  125. if (IMGFMT_IS_BGR(dmpi->imgfmt))
  126. sws_convertPalette8ToPacked24(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
  127. else
  128. sws_convertPalette8ToPacked24(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
  129. break;
  130. case 32:
  131. if (IMGFMT_IS_BGR(dmpi->imgfmt))
  132. sws_convertPalette8ToPacked32(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
  133. else
  134. sws_convertPalette8ToPacked32(mpi->planes[0],dmpi->planes[0],mpi->h*mpi->w,mpi->planes[1]);
  135. break;
  136. }
  137. } else {
  138. int y;
  139. for(y=0;y<mpi->h;y++){
  140. unsigned char* src=mpi->planes[0]+y*mpi->stride[0];
  141. unsigned char* dst=dmpi->planes[0]+y*dmpi->stride[0];
  142. switch(IMGFMT_RGB_DEPTH(dmpi->imgfmt)){
  143. case 15:
  144. case 16:
  145. if (IMGFMT_IS_BGR(dmpi->imgfmt))
  146. palette8tobgr16(src,dst,mpi->w,mpi->planes[1]);
  147. else
  148. palette8torgb16(src,dst,mpi->w,mpi->planes[1]);
  149. break;
  150. case 24:
  151. if (IMGFMT_IS_BGR(dmpi->imgfmt))
  152. sws_convertPalette8ToPacked24(src,dst,mpi->w,mpi->planes[1]);
  153. else
  154. sws_convertPalette8ToPacked24(src,dst,mpi->w,mpi->planes[1]);
  155. break;
  156. case 32:
  157. if (IMGFMT_IS_BGR(dmpi->imgfmt))
  158. sws_convertPalette8ToPacked32(src,dst,mpi->w,mpi->planes[1]);
  159. else
  160. sws_convertPalette8ToPacked32(src,dst,mpi->w,mpi->planes[1]);
  161. break;
  162. }
  163. }
  164. }
  165. mpi->planes[1] = old_palette;
  166. return vf_next_put_image(vf,dmpi, pts);
  167. }
  168. //===========================================================================//
  169. static int query_format(struct vf_instance *vf, unsigned int fmt){
  170. int best=find_best(vf,fmt);
  171. if(!best) return 0; // no match
  172. return vf->next->query_format(vf->next,best);
  173. }
  174. static void uninit(vf_instance_t *vf) {
  175. free(vf->priv);
  176. }
  177. static int vf_open(vf_instance_t *vf, char *args){
  178. unsigned int i;
  179. vf->config=config;
  180. vf->uninit=uninit;
  181. vf->put_image=put_image;
  182. vf->query_format=query_format;
  183. vf->priv=malloc(sizeof(struct vf_priv_s));
  184. memset(vf->priv, 0, sizeof(struct vf_priv_s));
  185. for(i=0;i<256;i++) gray_pal[i]=0x01010101*i;
  186. if (args)
  187. {
  188. if (!strcasecmp(args,"rgb15")) vf->priv->fmt=IMGFMT_RGB15; else
  189. if (!strcasecmp(args,"rgb16")) vf->priv->fmt=IMGFMT_RGB16; else
  190. if (!strcasecmp(args,"rgb24")) vf->priv->fmt=IMGFMT_RGB24; else
  191. if (!strcasecmp(args,"rgb32")) vf->priv->fmt=IMGFMT_RGB32; else
  192. if (!strcasecmp(args,"bgr15")) vf->priv->fmt=IMGFMT_BGR15; else
  193. if (!strcasecmp(args,"bgr16")) vf->priv->fmt=IMGFMT_BGR16; else
  194. if (!strcasecmp(args,"bgr24")) vf->priv->fmt=IMGFMT_BGR24; else
  195. if (!strcasecmp(args,"bgr32")) vf->priv->fmt=IMGFMT_BGR32; else
  196. {
  197. mp_msg(MSGT_VFILTER, MSGL_WARN, MSGTR_MPCODECS_UnknownFormatName, args);
  198. return 0;
  199. }
  200. }
  201. return 1;
  202. }
  203. const vf_info_t vf_info_palette = {
  204. "8bpp indexed (using palette) -> BGR 15/16/24/32 conversion",
  205. "palette",
  206. "A'rpi & Alex",
  207. "",
  208. vf_open,
  209. NULL
  210. };
  211. //===========================================================================//