Mercurial > mplayer.hg
annotate libmpcodecs/vf_flip.c @ 6168:741712dcfa0d
applied Diego Biurrun's patch
removed ogg misinfo
author | gabucino |
---|---|
date | Thu, 23 May 2002 20:24:17 +0000 |
parents | 6253fc19afb1 |
children | 79b536a37e40 |
rev | line source |
---|---|
5557 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 | |
5 #include "../config.h" | |
6 #include "../mp_msg.h" | |
7 | |
5607 | 8 #include "mp_image.h" |
5557 | 9 #include "vf.h" |
10 | |
11 #include "../libvo/fastmemcpy.h" | |
12 | |
13 struct vf_priv_s { | |
14 mp_image_t *dmpi; | |
15 }; | |
16 | |
17 //===========================================================================// | |
18 | |
6137
6253fc19afb1
do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents:
5691
diff
changeset
|
19 static int config(struct vf_instance_s* vf, |
6253fc19afb1
do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents:
5691
diff
changeset
|
20 int width, int height, int d_width, int d_height, |
6253fc19afb1
do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents:
5691
diff
changeset
|
21 unsigned int flags, unsigned int outfmt){ |
6253fc19afb1
do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents:
5691
diff
changeset
|
22 flags&=~8; // remove the FLIP flag |
6253fc19afb1
do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents:
5691
diff
changeset
|
23 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); |
6253fc19afb1
do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents:
5691
diff
changeset
|
24 } |
6253fc19afb1
do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents:
5691
diff
changeset
|
25 |
5557 | 26 static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){ |
27 if(mpi->flags&MP_IMGFLAG_ACCEPT_STRIDE){ | |
28 // try full DR ! | |
29 vf->priv->dmpi=vf_get_image(vf->next,mpi->imgfmt, | |
30 mpi->type, mpi->flags, mpi->width, mpi->height); | |
31 // set up mpi as a upside-down image of dmpi: | |
32 mpi->planes[0]=vf->priv->dmpi->planes[0]+ | |
33 vf->priv->dmpi->stride[0]*(vf->priv->dmpi->height-1); | |
34 mpi->stride[0]=-vf->priv->dmpi->stride[0]; | |
35 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
36 mpi->planes[1]=vf->priv->dmpi->planes[1]+ | |
37 vf->priv->dmpi->stride[1]*((vf->priv->dmpi->height>>1)-1); | |
38 mpi->stride[1]=-vf->priv->dmpi->stride[1]; | |
39 mpi->planes[2]=vf->priv->dmpi->planes[2]+ | |
40 vf->priv->dmpi->stride[2]*((vf->priv->dmpi->height>>1)-1); | |
41 mpi->stride[2]=-vf->priv->dmpi->stride[2]; | |
42 } | |
43 mpi->flags|=MP_IMGFLAG_DIRECT; | |
44 } | |
45 } | |
46 | |
47 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
48 if(mpi->flags&MP_IMGFLAG_DIRECT){ | |
49 vf_next_put_image(vf,vf->priv->dmpi); | |
50 return; // we've used DR, so we're ready... | |
51 } | |
52 | |
53 vf->priv->dmpi=vf_get_image(vf->next,mpi->imgfmt, | |
5691 | 54 MP_IMGTYPE_EXPORT, MP_IMGFLAG_ACCEPT_STRIDE, |
5557 | 55 mpi->width, mpi->height); |
56 | |
57 // set up mpi as a upside-down image of dmpi: | |
58 vf->priv->dmpi->planes[0]=mpi->planes[0]+ | |
59 mpi->stride[0]*(mpi->height-1); | |
60 vf->priv->dmpi->stride[0]=-mpi->stride[0]; | |
61 if(vf->priv->dmpi->flags&MP_IMGFLAG_PLANAR){ | |
62 vf->priv->dmpi->planes[1]=mpi->planes[1]+ | |
63 mpi->stride[1]*((mpi->height>>1)-1); | |
64 vf->priv->dmpi->stride[1]=-mpi->stride[1]; | |
65 vf->priv->dmpi->planes[2]=mpi->planes[2]+ | |
66 mpi->stride[2]*((mpi->height>>1)-1); | |
67 vf->priv->dmpi->stride[2]=-mpi->stride[2]; | |
68 } | |
69 | |
70 vf_next_put_image(vf,vf->priv->dmpi); | |
71 } | |
72 | |
73 //===========================================================================// | |
74 | |
75 static int open(vf_instance_t *vf, char* args){ | |
6137
6253fc19afb1
do not pass the flip flag to vo - maybe it support flipping just report no support
arpi
parents:
5691
diff
changeset
|
76 vf->config=config; |
5557 | 77 vf->get_image=get_image; |
78 vf->put_image=put_image; | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5557
diff
changeset
|
79 vf->default_reqs=VFCAP_ACCEPT_STRIDE; |
5557 | 80 vf->priv=malloc(sizeof(struct vf_priv_s)); |
81 return 1; | |
82 } | |
83 | |
84 vf_info_t vf_info_flip = { | |
85 "flip image upside-down", | |
86 "flip", | |
87 "A'rpi", | |
88 "", | |
89 open | |
90 }; | |
91 | |
92 //===========================================================================// |