Mercurial > mplayer.hg
annotate libmpcodecs/vf_flip.c @ 5939:65ee86f5a45f
avid mjpeg support (external huffman table)
author | alex |
---|---|
date | Thu, 02 May 2002 12:24:53 +0000 |
parents | 61fd0f9e4344 |
children | 6253fc19afb1 |
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 | |
19 static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
20 if(mpi->flags&MP_IMGFLAG_ACCEPT_STRIDE){ | |
21 // try full DR ! | |
22 vf->priv->dmpi=vf_get_image(vf->next,mpi->imgfmt, | |
23 mpi->type, mpi->flags, mpi->width, mpi->height); | |
24 // set up mpi as a upside-down image of dmpi: | |
25 mpi->planes[0]=vf->priv->dmpi->planes[0]+ | |
26 vf->priv->dmpi->stride[0]*(vf->priv->dmpi->height-1); | |
27 mpi->stride[0]=-vf->priv->dmpi->stride[0]; | |
28 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
29 mpi->planes[1]=vf->priv->dmpi->planes[1]+ | |
30 vf->priv->dmpi->stride[1]*((vf->priv->dmpi->height>>1)-1); | |
31 mpi->stride[1]=-vf->priv->dmpi->stride[1]; | |
32 mpi->planes[2]=vf->priv->dmpi->planes[2]+ | |
33 vf->priv->dmpi->stride[2]*((vf->priv->dmpi->height>>1)-1); | |
34 mpi->stride[2]=-vf->priv->dmpi->stride[2]; | |
35 } | |
36 mpi->flags|=MP_IMGFLAG_DIRECT; | |
37 } | |
38 } | |
39 | |
40 static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){ | |
41 if(mpi->flags&MP_IMGFLAG_DIRECT){ | |
42 vf_next_put_image(vf,vf->priv->dmpi); | |
43 return; // we've used DR, so we're ready... | |
44 } | |
45 | |
46 vf->priv->dmpi=vf_get_image(vf->next,mpi->imgfmt, | |
5691 | 47 MP_IMGTYPE_EXPORT, MP_IMGFLAG_ACCEPT_STRIDE, |
5557 | 48 mpi->width, mpi->height); |
49 | |
50 // set up mpi as a upside-down image of dmpi: | |
51 vf->priv->dmpi->planes[0]=mpi->planes[0]+ | |
52 mpi->stride[0]*(mpi->height-1); | |
53 vf->priv->dmpi->stride[0]=-mpi->stride[0]; | |
54 if(vf->priv->dmpi->flags&MP_IMGFLAG_PLANAR){ | |
55 vf->priv->dmpi->planes[1]=mpi->planes[1]+ | |
56 mpi->stride[1]*((mpi->height>>1)-1); | |
57 vf->priv->dmpi->stride[1]=-mpi->stride[1]; | |
58 vf->priv->dmpi->planes[2]=mpi->planes[2]+ | |
59 mpi->stride[2]*((mpi->height>>1)-1); | |
60 vf->priv->dmpi->stride[2]=-mpi->stride[2]; | |
61 } | |
62 | |
63 vf_next_put_image(vf,vf->priv->dmpi); | |
64 } | |
65 | |
66 //===========================================================================// | |
67 | |
68 static int open(vf_instance_t *vf, char* args){ | |
69 vf->get_image=get_image; | |
70 vf->put_image=put_image; | |
5565
0b301fec999a
capabilities support -> automatic insertion of scale, expand, pp
arpi
parents:
5557
diff
changeset
|
71 vf->default_reqs=VFCAP_ACCEPT_STRIDE; |
5557 | 72 vf->priv=malloc(sizeof(struct vf_priv_s)); |
73 return 1; | |
74 } | |
75 | |
76 vf_info_t vf_info_flip = { | |
77 "flip image upside-down", | |
78 "flip", | |
79 "A'rpi", | |
80 "", | |
81 open | |
82 }; | |
83 | |
84 //===========================================================================// |