annotate libmpcodecs/vf_yuy2.c @ 23666:5c3c7efd9b75

Get rid of my_memcpy_pic code duplication in many filters.
author reimar
date Thu, 28 Jun 2007 11:24:12 +0000
parents f8d4f8eff72b
children 00fff9a3b735
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
1 #include <stdio.h>
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
2 #include <stdlib.h>
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
3 #include <string.h>
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
4 #include <inttypes.h>
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
5
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 10993
diff changeset
6 #include "config.h"
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 10993
diff changeset
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
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
9
5607
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
10 #include "img_format.h"
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
11 #include "mp_image.h"
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
12 #include "vf.h"
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
13
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents: 18004
diff changeset
14 #include "libswscale/rgb2rgb.h"
10993
alex
parents: 9934
diff changeset
15 #include "vf_scale.h"
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
16
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
17 //===========================================================================//
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
18
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
19 static int config(struct vf_instance_s* vf,
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
20 int width, int height, int d_width, int d_height,
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
21 unsigned int flags, unsigned int outfmt){
10993
alex
parents: 9934
diff changeset
22
alex
parents: 9934
diff changeset
23 sws_rgb2rgb_init(get_sws_cpuflags());
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
24
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
25 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
26 mp_msg(MSGT_VFILTER, MSGL_WARN, MSGTR_MPCODECS_WarnNextFilterDoesntSupport, "YUY2");
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
27 return 0;
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
28 }
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
29
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
30 return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_YUY2);
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
31 }
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
32
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17012
diff changeset
33 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
34 mp_image_t *dmpi;
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
35
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
36 // hope we'll get DR buffer:
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
37 dmpi=vf_get_image(vf->next,IMGFMT_YUY2,
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
38 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
39 mpi->w, mpi->h);
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
40
7342
21d6837f5d95 yuv422planar->yuy2 support
arpi
parents: 5607
diff changeset
41 if(mpi->imgfmt==IMGFMT_422P)
21d6837f5d95 yuv422planar->yuy2 support
arpi
parents: 5607
diff changeset
42 yuv422ptoyuy2(mpi->planes[0],mpi->planes[1],mpi->planes[2], dmpi->planes[0],
21d6837f5d95 yuv422planar->yuy2 support
arpi
parents: 5607
diff changeset
43 mpi->w,mpi->h, mpi->stride[0],mpi->stride[1],dmpi->stride[0]);
21d6837f5d95 yuv422planar->yuy2 support
arpi
parents: 5607
diff changeset
44 else
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
45 yv12toyuy2(mpi->planes[0],mpi->planes[1],mpi->planes[2], dmpi->planes[0],
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
46 mpi->w,mpi->h, mpi->stride[0],mpi->stride[1],dmpi->stride[0]);
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
47
9934
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9593
diff changeset
48 vf_clone_mpi_attributes(dmpi, mpi);
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
49
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17012
diff changeset
50 return vf_next_put_image(vf,dmpi, pts);
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
51 }
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
52
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
53 //===========================================================================//
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
54
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
55 static int query_format(struct vf_instance_s* vf, unsigned int fmt){
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
56 switch(fmt){
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
57 case IMGFMT_YV12:
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
58 case IMGFMT_I420:
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
59 case IMGFMT_IYUV:
7342
21d6837f5d95 yuv422planar->yuy2 support
arpi
parents: 5607
diff changeset
60 case IMGFMT_422P:
5565
0b301fec999a capabilities support -> automatic insertion of scale, expand, pp
arpi
parents: 5539
diff changeset
61 return vf_next_query_format(vf,IMGFMT_YUY2) & (~VFCAP_CSP_SUPPORTED_BY_HW);
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
62 }
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
63 return 0;
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
64 }
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
65
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
66 static int open(vf_instance_t *vf, char* args){
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
67 vf->config=config;
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
68 vf->put_image=put_image;
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
69 vf->query_format=query_format;
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
70 return 1;
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
71 }
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
72
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
73 vf_info_t vf_info_yuy2 = {
7342
21d6837f5d95 yuv422planar->yuy2 support
arpi
parents: 5607
diff changeset
74 "fast YV12/Y422p -> YUY2 conversion",
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
75 "yuy2",
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
76 "A'rpi",
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
77 "",
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 7368
diff changeset
78 open,
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 7368
diff changeset
79 NULL
5539
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
80 };
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
81
eefc339440bc 2 new simple filters: yuy2 and format
arpi
parents:
diff changeset
82 //===========================================================================//