2 * Copyright (C) 2006 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.
24 * The motion estimation is somewhat at the mercy of the input, if the input
25 frames are created purely based on spatial interpolation then for example
26 a thin black line or another random and not interpolateable pattern
28 Note: completly ignoring the "unavailable" lines during motion estimation
29 didnt look any better, so the most obvious solution would be to improve
30 tfields or penalize problematic motion vectors ...
32 * If non iterative ME is used then snow currently ignores the OBMC window
33 and as a result sometimes creates artifacts
35 * only past frames are used, we should ideally use future frames too, something
36 like filtering the whole movie in forward and then backward direction seems
37 like a interresting idea but the current filter framework is FAR from
38 supporting such things
40 * combining the motion compensated image with the input image also isnt
41 as trivial as it seems, simple blindly taking even lines from one and
42 odd ones from the other doesnt work at all as ME/MC sometimes simple
43 has nothing in the previous frames which matches the current, the current
44 algo has been found by trial and error and almost certainly can be
55 #include "cpudetect.h"
57 #include "libavutil/internal.h"
58 #include "libavutil/intreadwrite.h"
59 #include "libavcodec/avcodec.h"
60 #include "libavcodec/dsputil.h"
66 #include "img_format.h"
70 #define MIN(a,b) ((a) > (b) ? (b) : (a))
71 #define MAX(a,b) ((a) < (b) ? (b) : (a))
72 #define ABS(a) ((a) > 0 ? (a) : (-(a)))
74 //===========================================================================//
87 AVCodecContext
*avctx_enc
;
92 static void filter(struct vf_priv_s
*p
, uint8_t *dst
[3], uint8_t *src
[3], int dst_stride
[3], int src_stride
[3], int width
, int height
){
97 p
->frame
->data
[i
]= src
[i
];
98 p
->frame
->linesize
[i
]= src_stride
[i
];
101 p
->avctx_enc
->me_cmp
=
102 p
->avctx_enc
->me_sub_cmp
= FF_CMP_SAD
/*| (p->parity ? FF_CMP_ODD : FF_CMP_EVEN)*/;
103 p
->frame
->quality
= p
->qp
*FF_QP2LAMBDA
;
104 out_size
= avcodec_encode_video(p
->avctx_enc
, p
->outbuf
, p
->outbuf_size
, p
->frame
);
105 p
->frame_dec
= p
->avctx_enc
->coded_frame
;
109 int w
= width
>>is_chroma
;
110 int h
= height
>>is_chroma
;
111 int fils
= p
->frame_dec
->linesize
[i
];
112 int srcs
= src_stride
[i
];
115 if((y
^ p
->parity
) & 1){
117 if((x
-2)+(y
-1)*w
>=0 && (x
+2)+(y
+1)*w
<w
*h
){ //FIXME either alloc larger images or optimize this
118 uint8_t *filp
= &p
->frame_dec
->data
[i
][x
+ y
*fils
];
119 uint8_t *srcp
= &src
[i
][x
+ y
*srcs
];
120 int diff0
= filp
[-fils
] - srcp
[-srcs
];
121 int diff1
= filp
[+fils
] - srcp
[+srcs
];
122 int spatial_score
= ABS(srcp
[-srcs
-1] - srcp
[+srcs
-1])
123 +ABS(srcp
[-srcs
] - srcp
[+srcs
])
124 +ABS(srcp
[-srcs
+1] - srcp
[+srcs
+1]) - 1;
128 { int score= ABS(srcp[-srcs-1+j] - srcp[+srcs-1-j])\
129 + ABS(srcp[-srcs +j] - srcp[+srcs -j])\
130 + ABS(srcp[-srcs+1+j] - srcp[+srcs+1-j]);\
131 if(score < spatial_score){\
132 spatial_score= score;\
133 diff0= filp[-fils+j] - srcp[-srcs+j];\
134 diff1= filp[+fils-j] - srcp[+srcs-j];
136 CHECK(-1) CHECK(-2) }} }}
137 CHECK( 1) CHECK( 2) }} }}
139 if((diff0
^ diff1
) > 0){
140 int mindiff
= ABS(diff0
) > ABS(diff1
) ? diff1
: diff0
;
144 if(diff0
+ diff1
> 0)
145 temp
-= (diff0
+ diff1
- ABS( ABS(diff0
) - ABS(diff1
) )/2)/2;
147 temp
-= (diff0
+ diff1
+ ABS( ABS(diff0
) - ABS(diff1
) )/2)/2;
149 temp
-= (diff0
+ diff1
)/2;
153 dst
[i
][x
+ y
*dst_stride
[i
]]= temp
> 255U ? ~(temp
>>31) : temp
;
155 dst
[i
][x
+ y
*dst_stride
[i
]]= filp
[0];
156 filp
[0]= temp
> 255U ? ~(temp
>>31) : temp
;
159 dst
[i
][x
+ y
*dst_stride
[i
]]= p
->frame_dec
->data
[i
][x
+ y
*fils
];
164 if(!((y
^ p
->parity
) & 1)){
167 p
->frame_dec
->data
[i
][x
+ y
*fils
]=
168 dst
[i
][x
+ y
*dst_stride
[i
]]= src
[i
][x
+ y
*srcs
];
170 dst
[i
][x
+ y
*dst_stride
[i
]]= p
->frame_dec
->data
[i
][x
+ y
*fils
];
171 p
->frame_dec
->data
[i
][x
+ y
*fils
]= src
[i
][x
+ y
*srcs
];
181 static int config(struct vf_instance_s
* vf
,
182 int width
, int height
, int d_width
, int d_height
,
183 unsigned int flags
, unsigned int outfmt
){
185 AVCodec
*enc
= avcodec_find_encoder(CODEC_ID_SNOW
);
188 AVCodecContext
*avctx_enc
;
191 int w
= ((width
+ 31) & (~31))>>is_chroma
;
192 int h
= ((height
+ 31) & (~31))>>is_chroma
;
194 vf
->priv
->temp_stride
[i
]= w
;
195 vf
->priv
->temp
[i
]= malloc(vf
->priv
->temp_stride
[i
]*h
*sizeof(int16_t));
196 vf
->priv
->src
[i
]= malloc(vf
->priv
->temp_stride
[i
]*h
*sizeof(uint8_t));
199 vf
->priv
->avctx_enc
= avcodec_alloc_context();
200 avctx_enc
->width
= width
;
201 avctx_enc
->height
= height
;
202 avctx_enc
->time_base
= (AVRational
){1,25}; // meaningless
203 avctx_enc
->gop_size
= 300;
204 avctx_enc
->max_b_frames
= 0;
205 avctx_enc
->pix_fmt
= PIX_FMT_YUV420P
;
206 avctx_enc
->flags
= CODEC_FLAG_QSCALE
| CODEC_FLAG_LOW_DELAY
;
207 avctx_enc
->strict_std_compliance
= FF_COMPLIANCE_EXPERIMENTAL
;
208 avctx_enc
->global_quality
= 1;
209 avctx_enc
->flags2
= CODEC_FLAG2_MEMC_ONLY
;
211 avctx_enc
->me_sub_cmp
= FF_CMP_SAD
; //SSE;
212 avctx_enc
->mb_cmp
= FF_CMP_SSE
;
214 switch(vf
->priv
->mode
){
218 avctx_enc
->me_method
= ME_ITER
;
220 avctx_enc
->flags
|= CODEC_FLAG_4MV
;
221 avctx_enc
->dia_size
=2;
222 // avctx_enc->mb_decision = MB_DECISION_RD;
224 avctx_enc
->flags
|= CODEC_FLAG_QPEL
;
227 avcodec_open(avctx_enc
, enc
);
230 vf
->priv
->frame
= avcodec_alloc_frame();
232 vf
->priv
->outbuf_size
= width
*height
*10;
233 vf
->priv
->outbuf
= malloc(vf
->priv
->outbuf_size
);
235 return vf_next_config(vf
,width
,height
,d_width
,d_height
,flags
,outfmt
);
238 static void get_image(struct vf_instance_s
* vf
, mp_image_t
*mpi
){
239 if(mpi
->flags
&MP_IMGFLAG_PRESERVE
) return; // don't change
240 return; //caused problems, dunno why
241 // ok, we can do pp in-place (or pp disabled):
242 vf
->dmpi
=vf_get_image(vf
->next
,mpi
->imgfmt
,
243 mpi
->type
, mpi
->flags
| MP_IMGFLAG_READABLE
, mpi
->width
, mpi
->height
);
244 mpi
->planes
[0]=vf
->dmpi
->planes
[0];
245 mpi
->stride
[0]=vf
->dmpi
->stride
[0];
246 mpi
->width
=vf
->dmpi
->width
;
247 if(mpi
->flags
&MP_IMGFLAG_PLANAR
){
248 mpi
->planes
[1]=vf
->dmpi
->planes
[1];
249 mpi
->planes
[2]=vf
->dmpi
->planes
[2];
250 mpi
->stride
[1]=vf
->dmpi
->stride
[1];
251 mpi
->stride
[2]=vf
->dmpi
->stride
[2];
253 mpi
->flags
|=MP_IMGFLAG_DIRECT
;
256 static int put_image(struct vf_instance_s
* vf
, mp_image_t
*mpi
, double pts
){
259 if(!(mpi
->flags
&MP_IMGFLAG_DIRECT
)){
260 // no DR, so get a new image! hope we'll get DR buffer:
261 dmpi
=vf_get_image(vf
->next
,mpi
->imgfmt
,
263 MP_IMGFLAG_ACCEPT_STRIDE
|MP_IMGFLAG_PREFER_ALIGNED_STRIDE
,
264 mpi
->width
,mpi
->height
);
265 vf_clone_mpi_attributes(dmpi
, mpi
);
270 filter(vf
->priv
, dmpi
->planes
, mpi
->planes
, dmpi
->stride
, mpi
->stride
, mpi
->w
, mpi
->h
);
272 return vf_next_put_image(vf
,dmpi
, pts
);
275 static void uninit(struct vf_instance_s
* vf
){
276 if(!vf
->priv
) return;
280 if(vf
->priv
->temp
[i
]) free(vf
->priv
->temp
[i
]);
281 vf
->priv
->temp
[i
]= NULL
;
282 if(vf
->priv
->src
[i
]) free(vf
->priv
->src
[i
]);
283 vf
->priv
->src
[i
]= NULL
;
286 if (vf
->priv
->avctx_enc
) {
287 avcodec_close(vf
->priv
->avctx_enc
);
288 av_freep(&vf
->priv
->avctx_enc
);
291 free(vf
->priv
->outbuf
);
296 //===========================================================================//
297 static int query_format(struct vf_instance_s
* vf
, unsigned int fmt
){
304 return vf_next_query_format(vf
,fmt
);
309 static int open(vf_instance_t
*vf
, char* args
){
312 vf
->put_image
=put_image
;
313 vf
->get_image
=get_image
;
314 vf
->query_format
=query_format
;
316 vf
->priv
=malloc(sizeof(struct vf_priv_s
));
317 memset(vf
->priv
, 0, sizeof(struct vf_priv_s
));
320 avcodec_register_all();
323 vf
->priv
->parity
= -1;
326 if (args
) sscanf(args
, "%d:%d:%d", &vf
->priv
->mode
, &vf
->priv
->parity
, &vf
->priv
->qp
);
331 const vf_info_t vf_info_mcdeint
= {
332 "motion compensating deinterlacer",
334 "Michael Niedermayer",