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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2012 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.net
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
/* Commonly used parameters */
#define PARAM_DYNRANGE \
{ \
.name = "audio_dynrange", \
.long_name = TRS("Dynamic range control"), \
.type = BG_PARAMETER_CHECKBUTTON, \
.val_default = GAVL_VALUE_INIT_INT(1), \
.help_string = TRS("Enable dynamic range control for codecs, which support this (currently only A52 and DTS).") \
}
#define PARAM_PP_LEVEL \
{ \
.name = "video_postprocessing_level", \
.long_name = TRS("Postprocessing level"), \
.type = BG_PARAMETER_SLIDER_FLOAT, \
.val_default = GAVL_VALUE_INIT_FLOAT(0.2), \
.val_min = GAVL_VALUE_INIT_FLOAT(0.0), \
.val_max = GAVL_VALUE_INIT_FLOAT(1.0), \
.num_digits = 2, \
.help_string = TRS("Set postprocessing (to remove compression artifacts). 0 means no postprocessing, 1 means maximum postprocessing.") \
}
#define PARAM_THREADS \
{ \
.name = "threads", \
.long_name = TRS("Number of decoding threads"), \
.type = BG_PARAMETER_INT, \
.val_default = GAVL_VALUE_INIT_INT(1), \
.val_min = GAVL_VALUE_INIT_INT(1), \
.val_max = GAVL_VALUE_INIT_INT(1024), \
.help_string = TRS("Set the number of threads used by Video codecs") \
}
#define PARAM_VIDEO_GENERIC \
PARAM_PP_LEVEL, \
PARAM_THREADS, \
{ \
.name = "shrink", \
.long_name = TRS("Shrink factor"), \
.type = BG_PARAMETER_SLIDER_INT, \
.val_min = GAVL_VALUE_INIT_INT(0), \
.val_max = GAVL_VALUE_INIT_INT(3), \
.val_default = GAVL_VALUE_INIT_INT(0), \
.help_string = TRS("This enables downscaling of images while decoding. Currently only supported for JPEG-2000."), \
}, \
{ \
.name = "vaapi", \
.long_name = TRS("Use vaapi"), \
.type = BG_PARAMETER_CHECKBUTTON, \
.help_string = TRS("Use VAAPI"), \
.val_default = GAVL_VALUE_INIT_INT(1), \
}
void
bg_avdec_option_set_parameter(bgav_options_t * opt, const char * name,
const gavl_value_t * val);
|