Mercurial > mplayer.hg
annotate libmpcodecs/vf_yuy2.c @ 22374:592e6aa9585b
clarify root vs admin
author | michael |
---|---|
date | Thu, 01 Mar 2007 12:43:14 +0000 |
parents | 8579acff875e |
children | f8d4f8eff72b |
rev | line source |
---|---|
5539 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #include <inttypes.h> | |
5 | |
17012 | 6 #include "config.h" |
7 #include "mp_msg.h" | |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17906
diff
changeset
|
8 #include "help_mp.h" |
5539 | 9 |
5607 | 10 #include "img_format.h" |
11 #include "mp_image.h" | |
5539 | 12 #include "vf.h" |
13 | |
17012 | 14 #include "libvo/fastmemcpy.h" |
18861 | 15 #include "libswscale/rgb2rgb.h" |
10993 | 16 #include "vf_scale.h" |
5539 | 17 |
18 //===========================================================================// | |
19 | |
20 static int config(struct vf_instance_s* vf, | |
21 int width, int height, int d_width, int d_height, | |
22 unsigned int flags, unsigned int outfmt){ | |
10993 | 23 |
24 sws_rgb2rgb_init(get_sws_cpuflags()); | |
5539 | 25 |
26 if(vf_next_query_format(vf,IMGFMT_YUY2)<=0){ | |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
17906
diff
changeset
|
27 mp_msg(MSGT_VFILTER, MSGL_WARN, MSGTR_MPCODECS_WarnNextFilterDoesntSupport, "YUY2"); |
5539 | 28 return 0; |
29 } | |
30 | |
31 return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_YUY2); | |
32 } | |
33 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
34 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){ |
5539 | 35 mp_image_t *dmpi; |
36 | |
37 // hope we'll get DR buffer: | |
38 dmpi=vf_get_image(vf->next,IMGFMT_YUY2, | |
39 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, | |
40 mpi->w, mpi->h); | |
41 | |
7342 | 42 if(mpi->imgfmt==IMGFMT_422P) |
43 yuv422ptoyuy2(mpi->planes[0],mpi->planes[1],mpi->planes[2], dmpi->planes[0], | |
44 mpi->w,mpi->h, mpi->stride[0],mpi->stride[1],dmpi->stride[0]); | |
45 else | |
5539 | 46 yv12toyuy2(mpi->planes[0],mpi->planes[1],mpi->planes[2], dmpi->planes[0], |
47 mpi->w,mpi->h, mpi->stride[0],mpi->stride[1],dmpi->stride[0]); | |
48 | |
9934 | 49 vf_clone_mpi_attributes(dmpi, mpi); |
5539 | 50 |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
51 return vf_next_put_image(vf,dmpi, pts); |
5539 | 52 } |
53 | |
54 //===========================================================================// | |
55 | |
56 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
57 switch(fmt){ | |
58 case IMGFMT_YV12: | |
59 case IMGFMT_I420: | |
60 case IMGFMT_IYUV: | |
7342 | 61 case IMGFMT_422P: |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5539
diff
changeset
|
62 return vf_next_query_format(vf,IMGFMT_YUY2) & (~VFCAP_CSP_SUPPORTED_BY_HW); |
5539 | 63 } |
64 return 0; | |
65 } | |
66 | |
67 static int open(vf_instance_t *vf, char* args){ | |
68 vf->config=config; | |
69 vf->put_image=put_image; | |
70 vf->query_format=query_format; | |
71 return 1; | |
72 } | |
73 | |
74 vf_info_t vf_info_yuy2 = { | |
7342 | 75 "fast YV12/Y422p -> YUY2 conversion", |
5539 | 76 "yuy2", |
77 "A'rpi", | |
78 "", | |
9593
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
7368
diff
changeset
|
79 open, |
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
7368
diff
changeset
|
80 NULL |
5539 | 81 }; |
82 | |
83 //===========================================================================// |