Mercurial > mplayer.hg
annotate libmpcodecs/vf_rotate.c @ 21698:009635b12924
Pass quant tables to next filters
Fix problem when softskip is before pp. It disabled the pp filter (with no warning), since pp needs the quant tables.
pach by Trent Piepho % xyzzy A speakeasy P org %
Original thread:
date Dec 5, 2006 11:40 AM
subject [MPlayer-dev-eng] softskip doesn't copy quant tables
author | gpoirier |
---|---|
date | Thu, 21 Dec 2006 14:59:39 +0000 |
parents | 497ebe3ecc2b |
children | f8d4f8eff72b |
rev | line source |
---|---|
5696 | 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" | |
5696 | 8 |
9 #include "img_format.h" | |
10 #include "mp_image.h" | |
11 #include "vf.h" | |
12 | |
17012 | 13 #include "libvo/fastmemcpy.h" |
5696 | 14 |
15 struct vf_priv_s { | |
16 int direction; | |
17 }; | |
18 | |
19 static void rotate(unsigned char* dst,unsigned char* src,int dststride,int srcstride,int w,int h,int bpp,int dir){ | |
20 int y; | |
21 if(dir&1){ | |
22 src+=srcstride*(w-1); | |
23 srcstride*=-1; | |
24 } | |
25 if(dir&2){ | |
26 dst+=dststride*(h-1); | |
27 dststride*=-1; | |
28 } | |
29 | |
30 for(y=0;y<h;y++){ | |
31 int x; | |
32 switch(bpp){ | |
33 case 1: | |
34 for(x=0;x<w;x++) dst[x]=src[y+x*srcstride]; | |
35 break; | |
36 case 2: | |
37 for(x=0;x<w;x++) *((short*)(dst+x*2))=*((short*)(src+y*2+x*srcstride)); | |
38 break; | |
39 case 3: | |
40 for(x=0;x<w;x++){ | |
41 dst[x*3+0]=src[0+y*3+x*srcstride]; | |
42 dst[x*3+1]=src[1+y*3+x*srcstride]; | |
43 dst[x*3+2]=src[2+y*3+x*srcstride]; | |
44 } | |
45 break; | |
46 case 4: | |
47 for(x=0;x<w;x++) *((int*)(dst+x*4))=*((int*)(src+y*4+x*srcstride)); | |
48 } | |
49 dst+=dststride; | |
50 } | |
51 } | |
52 | |
53 //===========================================================================// | |
54 | |
55 static int config(struct vf_instance_s* vf, | |
56 int width, int height, int d_width, int d_height, | |
57 unsigned int flags, unsigned int outfmt){ | |
7871 | 58 if (vf->priv->direction & 4) { |
59 if (width<height) vf->priv->direction&=3; | |
60 } | |
61 if (vf->priv->direction & 4){ | |
62 vf->put_image=vf_next_put_image; // passthru mode! | |
8367 | 63 if (vf->next->draw_slice) vf->draw_slice=vf_next_draw_slice; |
64 /* FIXME: this should be in an other procedure in vf.c; that should always check | |
65 whether the filter after the passthrough one still (not)supports slices */ | |
7871 | 66 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); |
67 } | |
5696 | 68 return vf_next_config(vf,height,width,d_height,d_width,flags,outfmt); |
69 } | |
70 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
71 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){ |
5696 | 72 mp_image_t *dmpi; |
73 | |
74 // hope we'll get DR buffer: | |
75 dmpi=vf_get_image(vf->next,mpi->imgfmt, | |
76 MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, | |
77 mpi->h, mpi->w); | |
78 | |
79 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
80 rotate(dmpi->planes[0],mpi->planes[0], | |
81 dmpi->stride[0],mpi->stride[0], | |
82 dmpi->w,dmpi->h,1,vf->priv->direction); | |
83 rotate(dmpi->planes[1],mpi->planes[1], | |
84 dmpi->stride[1],mpi->stride[1], | |
6539
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
5696
diff
changeset
|
85 dmpi->w>>mpi->chroma_x_shift,dmpi->h>>mpi->chroma_y_shift,1,vf->priv->direction); |
5696 | 86 rotate(dmpi->planes[2],mpi->planes[2], |
87 dmpi->stride[2],mpi->stride[2], | |
6539
79b536a37e40
better planar support, chroma subsampling support and Y8/Y800 support
alex
parents:
5696
diff
changeset
|
88 dmpi->w>>mpi->chroma_x_shift,dmpi->h>>mpi->chroma_y_shift,1,vf->priv->direction); |
5696 | 89 } else { |
90 rotate(dmpi->planes[0],mpi->planes[0], | |
91 dmpi->stride[0],mpi->stride[0], | |
92 dmpi->w,dmpi->h,dmpi->bpp>>3,vf->priv->direction); | |
9279 | 93 dmpi->planes[1] = mpi->planes[1]; // passthrough rgb8 palette |
5696 | 94 } |
95 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
96 return vf_next_put_image(vf,dmpi, pts); |
5696 | 97 } |
98 | |
99 //===========================================================================// | |
100 | |
8749 | 101 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ |
102 if(IMGFMT_IS_RGB(fmt) || IMGFMT_IS_BGR(fmt)) return vf_next_query_format(vf, fmt); | |
103 // we can support only symmetric (chroma_x_shift==chroma_y_shift) YUV formats: | |
104 switch(fmt) { | |
105 case IMGFMT_YV12: | |
106 case IMGFMT_I420: | |
107 case IMGFMT_IYUV: | |
108 case IMGFMT_YVU9: | |
109 // case IMGFMT_IF09: | |
110 case IMGFMT_Y8: | |
111 case IMGFMT_Y800: | |
112 case IMGFMT_444P: | |
113 return vf_next_query_format(vf, fmt); | |
114 } | |
115 return 0; | |
116 } | |
117 | |
5696 | 118 static int open(vf_instance_t *vf, char* args){ |
119 vf->config=config; | |
120 vf->put_image=put_image; | |
8749 | 121 vf->query_format=query_format; |
5696 | 122 vf->priv=malloc(sizeof(struct vf_priv_s)); |
123 vf->priv->direction=args?atoi(args):0; | |
124 return 1; | |
125 } | |
126 | |
127 vf_info_t vf_info_rotate = { | |
128 "rotate", | |
129 "rotate", | |
130 "A'rpi", | |
131 "", | |
9593
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
9279
diff
changeset
|
132 open, |
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
9279
diff
changeset
|
133 NULL |
5696 | 134 }; |
135 | |
136 //===========================================================================// |