Merge remote branch 'mplayer/master'
[mplayer/glamo.git] / libmpcodecs / vf_yuy2.c
blobe19461f387da8c41eb81d2899f80b890b678cdca
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <inttypes.h>
6 #include "config.h"
7 #include "mp_msg.h"
8 #include "help_mp.h"
10 #include "img_format.h"
11 #include "mp_image.h"
12 #include "vf.h"
14 #include "libswscale/rgb2rgb.h"
15 #include "vf_scale.h"
17 //===========================================================================//
19 static int config(struct vf_instance* vf,
20 int width, int height, int d_width, int d_height,
21 unsigned int flags, unsigned int outfmt){
23 sws_rgb2rgb_init(get_sws_cpuflags());
25 if(vf_next_query_format(vf,IMGFMT_YUY2)<=0){
26 mp_tmsg(MSGT_VFILTER, MSGL_WARN, "%s not supported by next filter/vo :(\n", "YUY2");
27 return 0;
30 return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_YUY2);
33 static int put_image(struct vf_instance* vf, mp_image_t *mpi, double pts){
34 mp_image_t *dmpi;
36 // hope we'll get DR buffer:
37 dmpi=vf_get_image(vf->next,IMGFMT_YUY2,
38 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
39 mpi->w, mpi->h);
41 if(mpi->imgfmt==IMGFMT_422P)
42 yuv422ptoyuy2(mpi->planes[0],mpi->planes[1],mpi->planes[2], dmpi->planes[0],
43 mpi->w,mpi->h, mpi->stride[0],mpi->stride[1],dmpi->stride[0]);
44 else
45 yv12toyuy2(mpi->planes[0],mpi->planes[1],mpi->planes[2], dmpi->planes[0],
46 mpi->w,mpi->h, mpi->stride[0],mpi->stride[1],dmpi->stride[0]);
48 vf_clone_mpi_attributes(dmpi, mpi);
50 return vf_next_put_image(vf,dmpi, pts);
53 //===========================================================================//
55 static int query_format(struct vf_instance* vf, unsigned int fmt){
56 switch(fmt){
57 case IMGFMT_YV12:
58 case IMGFMT_I420:
59 case IMGFMT_IYUV:
60 case IMGFMT_422P:
61 return vf_next_query_format(vf,IMGFMT_YUY2) & (~VFCAP_CSP_SUPPORTED_BY_HW);
63 return 0;
66 static int open(vf_instance_t *vf, char* args){
67 vf->config=config;
68 vf->put_image=put_image;
69 vf->query_format=query_format;
70 return 1;
73 const vf_info_t vf_info_yuy2 = {
74 "fast YV12/Y422p -> YUY2 conversion",
75 "yuy2",
76 "A'rpi",
77 "",
78 open,
79 NULL
82 //===========================================================================//