Mercurial > mplayer.hg
annotate libmpcodecs/vf_rotate.c @ 7757:03c707b25fdc
-fixed-vo support, based on patch by .so :)
author | arpi |
---|---|
date | Wed, 16 Oct 2002 19:31:07 +0000 |
parents | a894e99c1e51 |
children | 7b7254cf6553 |
rev | line source |
---|---|
5696 | 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 | |
9 #include "img_format.h" | |
10 #include "mp_image.h" | |
11 #include "vf.h" | |
12 | |
13 #include "../libvo/fastmemcpy.h" | |
14 #include "../postproc/rgb2rgb.h" | |
15 | |
16 struct vf_priv_s { | |
17 int direction; | |
18 }; | |
19 | |
20 static void rotate(unsigned char* dst,unsigned char* src,int dststride,int srcstride,int w,int h,int bpp,int dir){ | |
21 int y; | |
22 if(dir&1){ | |
23 src+=srcstride*(w-1); | |
24 srcstride*=-1; | |
25 } | |
26 if(dir&2){ | |
27 dst+=dststride*(h-1); | |
28 dststride*=-1; | |
29 } | |
30 | |
31 for(y=0;y<h;y++){ | |
32 int x; | |
33 switch(bpp){ | |
34 case 1: | |
35 for(x=0;x<w;x++) dst[x]=src[y+x*srcstride]; | |
36 break; | |
37 case 2: | |
38 for(x=0;x<w;x++) *((short*)(dst+x*2))=*((short*)(src+y*2+x*srcstride)); | |
39 break; | |
40 case 3: | |
41 for(x=0;x<w;x++){ | |
42 dst[x*3+0]=src[0+y*3+x*srcstride]; | |
43 dst[x*3+1]=src[1+y*3+x*srcstride]; | |
44 dst[x*3+2]=src[2+y*3+x*srcstride]; | |
45 } | |
46 break; | |
47 case 4: | |
48 for(x=0;x<w;x++) *((int*)(dst+x*4))=*((int*)(src+y*4+x*srcstride)); | |
49 } | |
50 dst+=dststride; | |
51 } | |
52 } | |
53 | |
54 //===========================================================================// | |
55 | |
56 static int config(struct vf_instance_s* vf, | |
57 int width, int height, int d_width, int d_height, | |
58 unsigned int flags, unsigned int outfmt){ | |
59 | |
60 return vf_next_config(vf,height,width,d_height,d_width,flags,outfmt); | |
61 } | |
62 | |
7368 | 63 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ |
5696 | 64 mp_image_t *dmpi; |
65 | |
66 // hope we'll get DR buffer: | |
67 dmpi=vf_get_image(vf->next,mpi->imgfmt, | |
68 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, | |
69 mpi->h, mpi->w); | |
70 | |
71 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
72 rotate(dmpi->planes[0],mpi->planes[0], | |
73 dmpi->stride[0],mpi->stride[0], | |
74 dmpi->w,dmpi->h,1,vf->priv->direction); | |
75 rotate(dmpi->planes[1],mpi->planes[1], | |
76 dmpi->stride[1],mpi->stride[1], | |
6539
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
5696
diff
changeset
|
77 dmpi->w>>mpi->chroma_x_shift,dmpi->h>>mpi->chroma_y_shift,1,vf->priv->direction); |
5696 | 78 rotate(dmpi->planes[2],mpi->planes[2], |
79 dmpi->stride[2],mpi->stride[2], | |
6539
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
5696
diff
changeset
|
80 dmpi->w>>mpi->chroma_x_shift,dmpi->h>>mpi->chroma_y_shift,1,vf->priv->direction); |
5696 | 81 } else { |
82 rotate(dmpi->planes[0],mpi->planes[0], | |
83 dmpi->stride[0],mpi->stride[0], | |
84 dmpi->w,dmpi->h,dmpi->bpp>>3,vf->priv->direction); | |
85 } | |
86 | |
7368 | 87 return vf_next_put_image(vf,dmpi); |
5696 | 88 } |
89 | |
90 //===========================================================================// | |
91 | |
92 static int open(vf_instance_t *vf, char* args){ | |
93 vf->config=config; | |
94 vf->put_image=put_image; | |
95 vf->priv=malloc(sizeof(struct vf_priv_s)); | |
96 vf->priv->direction=args?atoi(args):0; | |
97 return 1; | |
98 } | |
99 | |
100 vf_info_t vf_info_rotate = { | |
101 "rotate", | |
102 "rotate", | |
103 "A'rpi", | |
104 "", | |
105 open | |
106 }; | |
107 | |
108 //===========================================================================// |