2 * Copyright (C) 2002 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
34 #include "img_format.h"
37 #include "libvo/fastmemcpy.h"
40 //===========================================================================//
42 typedef struct FilterParam
{
48 FilterParam lumaParam
;
49 FilterParam chromaParam
;
52 /***************************************************************************/
54 static void interleave(uint8_t *dst
, uint8_t *src
, int w
, int h
, int dstStride
, int srcStride
, int interleave
, int swap
){
63 fast_memcpy(dst
+ dstStride
* y
, src
+ srcStride
*(y
*2 + a
), w
);
64 fast_memcpy(dst
+ dstStride
*(y
+ m
), src
+ srcStride
*(y
*2 + b
), w
);
69 fast_memcpy(dst
+ dstStride
* y
*2 , src
+ srcStride
*(y
*2 + a
), w
);
70 fast_memcpy(dst
+ dstStride
*(y
*2+1), src
+ srcStride
*(y
*2 + b
), w
);
75 fast_memcpy(dst
+ dstStride
*(y
*2+a
), src
+ srcStride
* y
, w
);
76 fast_memcpy(dst
+ dstStride
*(y
*2+b
), src
+ srcStride
*(y
+ m
), w
);
82 static int put_image(struct vf_instance_s
* vf
, mp_image_t
*mpi
, double pts
){
84 FilterParam
*luma
= &vf
->priv
->lumaParam
;
85 FilterParam
*chroma
= &vf
->priv
->chromaParam
;
87 mp_image_t
*dmpi
=vf_get_image(vf
->next
,mpi
->imgfmt
,
88 MP_IMGTYPE_TEMP
, MP_IMGFLAG_ACCEPT_STRIDE
,
91 if(mpi
->flags
&MP_IMGFLAG_PLANAR
)
94 w
= mpi
->w
* mpi
->bpp
/8;
96 interleave(dmpi
->planes
[0], mpi
->planes
[0],
97 w
, mpi
->h
, dmpi
->stride
[0], mpi
->stride
[0], luma
->interleave
, luma
->swap
);
99 if(mpi
->flags
&MP_IMGFLAG_PLANAR
){
100 int cw
= mpi
->w
>> mpi
->chroma_x_shift
;
101 int ch
= mpi
->h
>> mpi
->chroma_y_shift
;
103 interleave(dmpi
->planes
[1], mpi
->planes
[1], cw
,ch
,
104 dmpi
->stride
[1], mpi
->stride
[1], chroma
->interleave
, luma
->swap
);
105 interleave(dmpi
->planes
[2], mpi
->planes
[2], cw
,ch
,
106 dmpi
->stride
[2], mpi
->stride
[2], chroma
->interleave
, luma
->swap
);
109 return vf_next_put_image(vf
,dmpi
, pts
);
112 //===========================================================================//
114 static void parse(FilterParam
*fp
, char* args
){
116 char *max
= strchr(args
, ':');
118 if(!max
) max
= args
+ strlen(args
);
120 pos
= strchr(args
, 's');
121 if(pos
&& pos
<max
) fp
->swap
=1;
122 pos
= strchr(args
, 'i');
123 if(pos
&& pos
<max
) fp
->interleave
=1;
124 pos
= strchr(args
, 'd');
125 if(pos
&& pos
<max
) fp
->interleave
=-1;
128 static int open(vf_instance_t
*vf
, char* args
){
130 vf
->put_image
=put_image
;
131 // vf->get_image=get_image;
132 vf
->priv
=malloc(sizeof(struct vf_priv_s
));
133 memset(vf
->priv
, 0, sizeof(struct vf_priv_s
));
137 char *arg2
= strchr(args
,':');
138 if(arg2
) parse(&vf
->priv
->chromaParam
, arg2
+1);
139 parse(&vf
->priv
->lumaParam
, args
);
145 const vf_info_t vf_info_il
= {
148 "Michael Niedermayer",
154 //===========================================================================//