vf_yvu9.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. #include <stdio.h>
  19. #include <stdlib.h>
  20. #include <string.h>
  21. #include <inttypes.h>
  22. #include "config.h"
  23. #include "mp_msg.h"
  24. #include "help_mp.h"
  25. #include "img_format.h"
  26. #include "mp_image.h"
  27. #include "vf.h"
  28. #include "libvo/fastmemcpy.h"
  29. //===========================================================================//
  30. static int config(struct vf_instance *vf,
  31. int width, int height, int d_width, int d_height,
  32. unsigned int flags, unsigned int outfmt){
  33. if(vf_next_query_format(vf,IMGFMT_YV12)<=0){
  34. mp_msg(MSGT_VFILTER, MSGL_WARN, MSGTR_MPCODECS_WarnNextFilterDoesntSupport, "YVU9");
  35. return 0;
  36. }
  37. return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_YV12);
  38. }
  39. static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){
  40. mp_image_t *dmpi;
  41. int y,w,h;
  42. // hope we'll get DR buffer:
  43. dmpi=vf_get_image(vf->next,IMGFMT_YV12,
  44. MP_IMGTYPE_TEMP, 0/*MP_IMGFLAG_ACCEPT_STRIDE*/,
  45. mpi->w, mpi->h);
  46. for(y=0;y<mpi->h;y++)
  47. fast_memcpy(dmpi->planes[0]+dmpi->stride[0]*y,
  48. mpi->planes[0]+mpi->stride[0]*y,
  49. mpi->w);
  50. w=mpi->w/4; h=mpi->h/2;
  51. for(y=0;y<h;y++){
  52. unsigned char* s=mpi->planes[1]+mpi->stride[1]*(y>>1);
  53. unsigned char* d=dmpi->planes[1]+dmpi->stride[1]*y;
  54. int x;
  55. for(x=0;x<w;x++) d[2*x]=d[2*x+1]=s[x];
  56. }
  57. for(y=0;y<h;y++){
  58. unsigned char* s=mpi->planes[2]+mpi->stride[2]*(y>>1);
  59. unsigned char* d=dmpi->planes[2]+dmpi->stride[2]*y;
  60. int x;
  61. for(x=0;x<w;x++) d[2*x]=d[2*x+1]=s[x];
  62. }
  63. vf_clone_mpi_attributes(dmpi, mpi);
  64. return vf_next_put_image(vf,dmpi, pts);
  65. }
  66. //===========================================================================//
  67. static int query_format(struct vf_instance *vf, unsigned int fmt){
  68. if (fmt == IMGFMT_YVU9 || fmt == IMGFMT_IF09)
  69. return vf_next_query_format(vf,IMGFMT_YV12) & (~VFCAP_CSP_SUPPORTED_BY_HW);
  70. return 0;
  71. }
  72. static int vf_open(vf_instance_t *vf, char *args){
  73. vf->config=config;
  74. vf->put_image=put_image;
  75. vf->query_format=query_format;
  76. return 1;
  77. }
  78. const vf_info_t vf_info_yvu9 = {
  79. "fast YVU9->YV12 conversion",
  80. "yvu9",
  81. "alex",
  82. "",
  83. vf_open,
  84. NULL
  85. };
  86. //===========================================================================//