blob: 36b6fc54afc3724f88e7552df12a6370a32f0d97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* decomb.h
Copyright (c) 2003-2017 HandBrake Team
This file is part of the HandBrake source code
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License v2.
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
#ifndef HB_DECOMB_H
#define HB_DECOMB_H
#define MODE_DECOMB_YADIF 1 // Use yadif
#define MODE_DECOMB_BLEND 2 // Use blending interpolation
#define MODE_DECOMB_CUBIC 4 // Use cubic interpolation
#define MODE_DECOMB_EEDI2 8 // Use EEDI2 interpolation
#define MODE_DECOMB_BOB 16 // Deinterlace each field to a separate frame
#define MODE_DECOMB_SELECTIVE 32 // Selectively deinterlace based on comb detection
#define MODE_YADIF_ENABLE 1
#define MODE_YADIF_SPATIAL 2
#define MODE_YADIF_BOB 4
#define MODE_DEINTERLACE_QSV 8
#endif // HB_DECOMB_H
|