Mercurial > mplayer.hg
annotate libmpcodecs/vf_yuy2.c @ 9421:4baee69b8e39
subpacket_base_size isnt needed for fixed sized subpackets
author | michael |
---|---|
date | Fri, 14 Feb 2003 11:37:38 +0000 |
parents | a894e99c1e51 |
children | e9a2af584986 |
rev | line source |
---|---|
5539 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #include <inttypes.h> | |
5 | |
6 #include "../config.h" | |
7 #include "../mp_msg.h" | |
8 | |
5607 | 9 #include "img_format.h" |
10 #include "mp_image.h" | |
5539 | 11 #include "vf.h" |
12 | |
13 #include "../libvo/fastmemcpy.h" | |
14 #include "../postproc/rgb2rgb.h" | |
15 | |
16 //===========================================================================// | |
17 | |
18 static int config(struct vf_instance_s* vf, | |
19 int width, int height, int d_width, int d_height, | |
20 unsigned int flags, unsigned int outfmt){ | |
21 | |
22 if(vf_next_query_format(vf,IMGFMT_YUY2)<=0){ | |
23 printf("yuy2 not supported by next filter/vo :(\n"); | |
24 return 0; | |
25 } | |
26 | |
27 return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_YUY2); | |
28 } | |
29 | |
7368 | 30 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ |
5539 | 31 mp_image_t *dmpi; |
32 | |
33 // hope we'll get DR buffer: | |
34 dmpi=vf_get_image(vf->next,IMGFMT_YUY2, | |
35 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, | |
36 mpi->w, mpi->h); | |
37 | |
7342 | 38 if(mpi->imgfmt==IMGFMT_422P) |
39 yuv422ptoyuy2(mpi->planes[0],mpi->planes[1],mpi->planes[2], dmpi->planes[0], | |
40 mpi->w,mpi->h, mpi->stride[0],mpi->stride[1],dmpi->stride[0]); | |
41 else | |
5539 | 42 yv12toyuy2(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 | |
45 dmpi->qscale=mpi->qscale; | |
46 dmpi->qstride=mpi->qstride; | |
47 | |
7368 | 48 return vf_next_put_image(vf,dmpi); |
5539 | 49 } |
50 | |
51 //===========================================================================// | |
52 | |
53 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
54 switch(fmt){ | |
55 case IMGFMT_YV12: | |
56 case IMGFMT_I420: | |
57 case IMGFMT_IYUV: | |
7342 | 58 case IMGFMT_422P: |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5539
diff
changeset
|
59 return vf_next_query_format(vf,IMGFMT_YUY2) & (~VFCAP_CSP_SUPPORTED_BY_HW); |
5539 | 60 } |
61 return 0; | |
62 } | |
63 | |
64 static int open(vf_instance_t *vf, char* args){ | |
65 vf->config=config; | |
66 vf->put_image=put_image; | |
67 vf->query_format=query_format; | |
68 return 1; | |
69 } | |
70 | |
71 vf_info_t vf_info_yuy2 = { | |
7342 | 72 "fast YV12/Y422p -> YUY2 conversion", |
5539 | 73 "yuy2", |
74 "A'rpi", | |
75 "", | |
76 open | |
77 }; | |
78 | |
79 //===========================================================================// |