mirror of https://github.com/mpv-player/mpv
Make all vf_info_t structs const
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25249 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
2bf8c692f1
commit
b95c80ca86
|
@ -309,7 +309,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_2xsai = {
|
||||
const vf_info_t vf_info_2xsai = {
|
||||
"2xSai BGR bitmap 2x scaler",
|
||||
"2xsai",
|
||||
"A'rpi",
|
||||
|
|
|
@ -159,7 +159,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_cropdetect = {
|
||||
const vf_info_t vf_info_cropdetect = {
|
||||
"autodetect crop size",
|
||||
"cropdetect",
|
||||
"A'rpi",
|
||||
|
|
|
@ -170,7 +170,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_decimate = {
|
||||
const vf_info_t vf_info_decimate = {
|
||||
"near-duplicate frame remover",
|
||||
"decimate",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -270,7 +270,7 @@ static m_struct_t vf_opts = {
|
|||
vf_opts_fields
|
||||
};
|
||||
|
||||
vf_info_t vf_info_delogo = {
|
||||
const vf_info_t vf_info_delogo = {
|
||||
"simple logo remover",
|
||||
"delogo",
|
||||
"Jindrich Makovicka, Alex Beregszaszi",
|
||||
|
|
|
@ -260,7 +260,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_denoise3d = {
|
||||
const vf_info_t vf_info_denoise3d = {
|
||||
"3D Denoiser (variable lowpass filter)",
|
||||
"denoise3d",
|
||||
"Daniel Moreno",
|
||||
|
|
|
@ -425,7 +425,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_detc = {
|
||||
const vf_info_t vf_info_detc = {
|
||||
"de-telecine filter",
|
||||
"detc",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -186,7 +186,7 @@ static int open (vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_dint = {
|
||||
const vf_info_t vf_info_dint = {
|
||||
"drop interlaced frames",
|
||||
"dint",
|
||||
"A.G.",
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
#include "libvo/fastmemcpy.h"
|
||||
|
||||
vf_info_t vf_info_divtc;
|
||||
const vf_info_t vf_info_divtc;
|
||||
|
||||
struct vf_priv_s
|
||||
{
|
||||
|
@ -692,7 +692,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_divtc =
|
||||
const vf_info_t vf_info_divtc =
|
||||
{
|
||||
"inverse telecine for deinterlaced video",
|
||||
"divtc",
|
||||
|
|
|
@ -138,7 +138,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_down3dright = {
|
||||
const vf_info_t vf_info_down3dright = {
|
||||
"convert stereo movie from top-bottom to left-right field",
|
||||
"down3dright",
|
||||
"Zdenek Kabelac",
|
||||
|
|
|
@ -95,7 +95,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_dsize = {
|
||||
const vf_info_t vf_info_dsize = {
|
||||
"reset displaysize/aspect",
|
||||
"dsize",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -37,7 +37,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_dvbscale = {
|
||||
const vf_info_t vf_info_dvbscale = {
|
||||
"calc Y scaling for DVB card",
|
||||
"dvbscale",
|
||||
"A'rpi",
|
||||
|
|
|
@ -236,7 +236,7 @@ static m_struct_t vf_opts = {
|
|||
vf_opts_fields
|
||||
};
|
||||
|
||||
vf_info_t vf_info_eq = {
|
||||
const vf_info_t vf_info_eq = {
|
||||
"soft video equalizer",
|
||||
"eq",
|
||||
"Richard Felker",
|
||||
|
|
|
@ -495,7 +495,7 @@ int open (vf_instance_t *vf, char *args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_eq2 = {
|
||||
const vf_info_t vf_info_eq2 = {
|
||||
"Software equalizer",
|
||||
"eq2",
|
||||
"Hampa Hug, Daniel Moreno, Richard Felker",
|
||||
|
|
|
@ -464,7 +464,7 @@ static m_struct_t vf_opts = {
|
|||
|
||||
|
||||
|
||||
vf_info_t vf_info_expand = {
|
||||
const vf_info_t vf_info_expand = {
|
||||
#ifdef OSD_SUPPORT
|
||||
"expanding & osd",
|
||||
#else
|
||||
|
|
|
@ -59,7 +59,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_field = {
|
||||
const vf_info_t vf_info_field = {
|
||||
"extract single field",
|
||||
"field",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -86,7 +86,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_fil = {
|
||||
const vf_info_t vf_info_fil = {
|
||||
"fast (de)interleaver",
|
||||
"fil",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -1436,7 +1436,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_filmdint = {
|
||||
const vf_info_t vf_info_filmdint = {
|
||||
"Advanced inverse telecine filer",
|
||||
"filmdint",
|
||||
"Zoltan Hidvegi",
|
||||
|
|
|
@ -80,7 +80,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_flip = {
|
||||
const vf_info_t vf_info_flip = {
|
||||
"flip image upside-down",
|
||||
"flip",
|
||||
"A'rpi",
|
||||
|
|
|
@ -86,7 +86,7 @@ static m_struct_t vf_opts = {
|
|||
vf_opts_fields
|
||||
};
|
||||
|
||||
vf_info_t vf_info_format = {
|
||||
const vf_info_t vf_info_format = {
|
||||
"force output format",
|
||||
"format",
|
||||
"A'rpi",
|
||||
|
|
|
@ -180,7 +180,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_framestep = {
|
||||
const vf_info_t vf_info_framestep = {
|
||||
"Dump one every n / key frames",
|
||||
"framestep",
|
||||
"Daniele Forghieri",
|
||||
|
|
|
@ -670,7 +670,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_fspp = {
|
||||
const vf_info_t vf_info_fspp = {
|
||||
"fast simple postprocess",
|
||||
"fspp",
|
||||
"Michael Niedermayer, Nikolaj Poroshin",
|
||||
|
|
|
@ -187,7 +187,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_geq = {
|
||||
const vf_info_t vf_info_geq = {
|
||||
"generic equation filter",
|
||||
"geq",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -210,7 +210,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_halfpack = {
|
||||
const vf_info_t vf_info_halfpack = {
|
||||
"yuv planar 4:2:0 -> packed 4:2:2, half height",
|
||||
"halfpack",
|
||||
"Richard Felker",
|
||||
|
|
|
@ -64,7 +64,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_harddup = {
|
||||
const vf_info_t vf_info_harddup = {
|
||||
"resubmit duplicate frames for encoding",
|
||||
"harddup",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -359,7 +359,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_hqdn3d = {
|
||||
const vf_info_t vf_info_hqdn3d = {
|
||||
"High Quality 3D Denoiser",
|
||||
"hqdn3d",
|
||||
"Daniel Moreno & A'rpi",
|
||||
|
|
|
@ -181,7 +181,7 @@ static m_struct_t vf_opts = {
|
|||
vf_opts_fields
|
||||
};
|
||||
|
||||
vf_info_t vf_info_hue = {
|
||||
const vf_info_t vf_info_hue = {
|
||||
"hue changer",
|
||||
"hue",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -140,7 +140,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_il = {
|
||||
const vf_info_t vf_info_il = {
|
||||
"(de)interleave",
|
||||
"il",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -421,7 +421,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_ilpack = {
|
||||
const vf_info_t vf_info_ilpack = {
|
||||
"4:2:0 planar -> 4:2:2 packed reinterlacer",
|
||||
"ilpack",
|
||||
"Richard Felker",
|
||||
|
|
|
@ -522,7 +522,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_ivtc = {
|
||||
const vf_info_t vf_info_ivtc = {
|
||||
"inverse telecine, take 2",
|
||||
"ivtc",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -336,7 +336,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_kerndeint = {
|
||||
const vf_info_t vf_info_kerndeint = {
|
||||
"Kernel Deinterlacer",
|
||||
"kerndeint",
|
||||
"Donald Graft",
|
||||
|
|
|
@ -162,7 +162,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_lavc = {
|
||||
const vf_info_t vf_info_lavc = {
|
||||
"realtime mpeg1 encoding with libavcodec",
|
||||
"lavc",
|
||||
"A'rpi",
|
||||
|
|
|
@ -173,7 +173,7 @@ open (vf_instance_t *vf, char* args)
|
|||
}
|
||||
|
||||
|
||||
vf_info_t vf_info_lavcdeint = {
|
||||
const vf_info_t vf_info_lavcdeint = {
|
||||
"libavcodec's deinterlacing filter",
|
||||
"lavcdeint",
|
||||
"Joe Rabinoff",
|
||||
|
|
|
@ -327,7 +327,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_mcdeint = {
|
||||
const vf_info_t vf_info_mcdeint = {
|
||||
"motion compensating deinterlacer",
|
||||
"mcdeint",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -101,7 +101,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_mirror = {
|
||||
const vf_info_t vf_info_mirror = {
|
||||
"horizontal mirror",
|
||||
"mirror",
|
||||
"Eyck",
|
||||
|
|
|
@ -86,7 +86,7 @@ static m_struct_t vf_opts = {
|
|||
vf_opts_fields
|
||||
};
|
||||
|
||||
vf_info_t vf_info_noformat = {
|
||||
const vf_info_t vf_info_noformat = {
|
||||
"disallow one output format",
|
||||
"noformat",
|
||||
"Joey",
|
||||
|
|
|
@ -459,7 +459,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_noise = {
|
||||
const vf_info_t vf_info_noise = {
|
||||
"noise generator",
|
||||
"noise",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -317,7 +317,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_ow = {
|
||||
const vf_info_t vf_info_ow = {
|
||||
"overcomplete wavelet denoiser",
|
||||
"ow",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -195,7 +195,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_palette = {
|
||||
const vf_info_t vf_info_palette = {
|
||||
"8bpp indexed (using palette) -> BGR 15/16/24/32 conversion",
|
||||
"palette",
|
||||
"A'rpi & Alex",
|
||||
|
|
|
@ -329,7 +329,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_perspective = {
|
||||
const vf_info_t vf_info_perspective = {
|
||||
"perspective correcture",
|
||||
"perspective",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -272,7 +272,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_phase =
|
||||
const vf_info_t vf_info_phase =
|
||||
{
|
||||
"phase shift fields",
|
||||
"phase",
|
||||
|
|
|
@ -217,7 +217,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_pp = {
|
||||
const vf_info_t vf_info_pp = {
|
||||
"postprocessing",
|
||||
"pp",
|
||||
"A'rpi",
|
||||
|
|
|
@ -479,7 +479,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_pp7 = {
|
||||
const vf_info_t vf_info_pp7 = {
|
||||
"postprocess 7",
|
||||
"pp7",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -286,7 +286,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
const vf_info_t vf_info_pullup = {
|
||||
const const vf_info_t vf_info_pullup = {
|
||||
"pullup (from field sequence to frames)",
|
||||
"pullup",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -165,7 +165,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_qp = {
|
||||
const vf_info_t vf_info_qp = {
|
||||
"QP changer",
|
||||
"qp",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -153,7 +153,7 @@ open(vf_instance_t* vf, char* args) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_rectangle = {
|
||||
const vf_info_t vf_info_rectangle = {
|
||||
"draw rectangle",
|
||||
"rectangle",
|
||||
"Kim Minh Kaplan",
|
||||
|
|
|
@ -897,7 +897,7 @@ void uninit(vf_instance_t * vf)
|
|||
/**
|
||||
* \brief Meta data about our filter.
|
||||
*/
|
||||
vf_info_t vf_info_remove_logo = {
|
||||
const vf_info_t vf_info_remove_logo = {
|
||||
"Removes a tv logo based on a mask image.",
|
||||
"remove-logo",
|
||||
"Robert Edele",
|
||||
|
|
|
@ -91,7 +91,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_rgb2bgr = {
|
||||
const vf_info_t vf_info_rgb2bgr = {
|
||||
"fast 24/32bpp RGB<->BGR conversion",
|
||||
"rgb2bgr",
|
||||
"A'rpi",
|
||||
|
|
|
@ -125,7 +125,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_rgbtest = {
|
||||
const vf_info_t vf_info_rgbtest = {
|
||||
"rgbtest",
|
||||
"rgbtest",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -122,7 +122,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_rotate = {
|
||||
const vf_info_t vf_info_rotate = {
|
||||
"rotate",
|
||||
"rotate",
|
||||
"A'rpi",
|
||||
|
|
|
@ -311,7 +311,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_sab = {
|
||||
const vf_info_t vf_info_sab = {
|
||||
"shape adaptive blur",
|
||||
"sab",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -674,7 +674,7 @@ static m_struct_t vf_opts = {
|
|||
vf_opts_fields
|
||||
};
|
||||
|
||||
vf_info_t vf_info_scale = {
|
||||
const vf_info_t vf_info_scale = {
|
||||
"software scaling",
|
||||
"scale",
|
||||
"A'rpi",
|
||||
|
|
|
@ -297,7 +297,7 @@ static void uninit(vf_instance_t *vf)
|
|||
}
|
||||
|
||||
|
||||
vf_info_t vf_info_screenshot = {
|
||||
const vf_info_t vf_info_screenshot = {
|
||||
"screenshot to file",
|
||||
"screenshot",
|
||||
"A'rpi, Jindrich Makovicka",
|
||||
|
|
|
@ -258,7 +258,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_smartblur = {
|
||||
const vf_info_t vf_info_smartblur = {
|
||||
"smart blur",
|
||||
"smartblur",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -136,7 +136,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_softpulldown = {
|
||||
const vf_info_t vf_info_softpulldown = {
|
||||
"mpeg2 soft 3:2 pulldown",
|
||||
"softpulldown",
|
||||
"Tobias Diedrich <ranma+mplayer@tdiedrich.de>",
|
||||
|
|
|
@ -74,7 +74,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_softskip = {
|
||||
const vf_info_t vf_info_softskip = {
|
||||
"soft (post-filter) frame skipping for encoding",
|
||||
"softskip",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -600,7 +600,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_spp = {
|
||||
const vf_info_t vf_info_spp = {
|
||||
"simple postprocess",
|
||||
"spp",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -98,7 +98,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_swapuv = {
|
||||
const vf_info_t vf_info_swapuv = {
|
||||
"UV swapper",
|
||||
"swapuv",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -127,7 +127,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_telecine = {
|
||||
const vf_info_t vf_info_telecine = {
|
||||
"telecine filter",
|
||||
"telecine",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -319,7 +319,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_test = {
|
||||
const vf_info_t vf_info_test = {
|
||||
"test pattern generator",
|
||||
"test",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -491,7 +491,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_tfields = {
|
||||
const vf_info_t vf_info_tfields = {
|
||||
"temporal field separation",
|
||||
"tfields",
|
||||
"Rich Felker",
|
||||
|
|
|
@ -302,7 +302,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_tile = {
|
||||
const vf_info_t vf_info_tile = {
|
||||
"Make a single image tiling x/y images",
|
||||
"tile",
|
||||
"Daniele Forghieri",
|
||||
|
|
|
@ -223,7 +223,7 @@ static int open(vf_instance_t *vf, char* args)
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_tinterlace = {
|
||||
const vf_info_t vf_info_tinterlace = {
|
||||
"temporal field interlacing",
|
||||
"tinterlace",
|
||||
"Michael Zucchi",
|
||||
|
|
|
@ -311,7 +311,7 @@ static int open( vf_instance_t *vf, char* args ) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_unsharp = {
|
||||
const vf_info_t vf_info_unsharp = {
|
||||
"unsharp mask & gaussian blur",
|
||||
"unsharp",
|
||||
"Remi Guyomarch",
|
||||
|
|
|
@ -377,7 +377,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_uspp = {
|
||||
const vf_info_t vf_info_uspp = {
|
||||
"ultra simple/slow postprocess",
|
||||
"uspp",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -228,7 +228,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_vo = {
|
||||
const vf_info_t vf_info_vo = {
|
||||
"libvo wrapper",
|
||||
"vo",
|
||||
"A'rpi",
|
||||
|
|
|
@ -512,7 +512,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_yadif = {
|
||||
const vf_info_t vf_info_yadif = {
|
||||
"Yet Another DeInterlacing Filter",
|
||||
"yadif",
|
||||
"Michael Niedermayer",
|
||||
|
|
|
@ -90,7 +90,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_yuvcsp = {
|
||||
const vf_info_t vf_info_yuvcsp = {
|
||||
"yuv colorspace converter",
|
||||
"yuvcsp",
|
||||
"Alex Beregszaszi",
|
||||
|
|
|
@ -70,7 +70,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_yuy2 = {
|
||||
const vf_info_t vf_info_yuy2 = {
|
||||
"fast YV12/Y422p -> YUY2 conversion",
|
||||
"yuy2",
|
||||
"A'rpi",
|
||||
|
|
|
@ -75,7 +75,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_yvu9 = {
|
||||
const vf_info_t vf_info_yvu9 = {
|
||||
"fast YVU9->YV12 conversion",
|
||||
"yvu9",
|
||||
"alex",
|
||||
|
|
|
@ -1057,7 +1057,7 @@ static int open(vf_instance_t *vf, char* args){
|
|||
return 1;
|
||||
}
|
||||
|
||||
vf_info_t vf_info_zrmjpeg = {
|
||||
const vf_info_t vf_info_zrmjpeg = {
|
||||
"realtime zoran MJPEG encoding",
|
||||
"zrmjpeg",
|
||||
"Rik Snel",
|
||||
|
|
Loading…
Reference in New Issue