2008-03-31 03:19:29 +00:00
|
|
|
#ifndef MPLAYER_OPTIONS_H
|
|
|
|
#define MPLAYER_OPTIONS_H
|
|
|
|
|
|
|
|
typedef struct MPOpts {
|
2008-04-01 14:35:10 +00:00
|
|
|
char **video_driver_list;
|
|
|
|
char **audio_driver_list;
|
2008-03-31 03:19:29 +00:00
|
|
|
int fixed_vo;
|
2008-04-19 04:45:16 +00:00
|
|
|
int vo_ontop;
|
2012-01-21 07:28:07 +00:00
|
|
|
char *mixer_device;
|
|
|
|
char *mixer_channel;
|
|
|
|
int softvol;
|
|
|
|
float softvol_max;
|
2010-11-12 12:06:37 +00:00
|
|
|
int gapless_audio;
|
|
|
|
int ao_buffersize;
|
2008-04-24 04:23:15 +00:00
|
|
|
int screen_size_x;
|
|
|
|
int screen_size_y;
|
2008-04-20 23:18:28 +00:00
|
|
|
int vo_screenwidth;
|
|
|
|
int vo_screenheight;
|
2009-03-20 13:22:15 +00:00
|
|
|
int force_window_position;
|
2010-11-04 03:41:11 +00:00
|
|
|
char *vo_winname;
|
|
|
|
char *vo_wintitle;
|
2008-05-01 08:14:29 +00:00
|
|
|
float force_monitor_aspect;
|
|
|
|
float monitor_pixel_aspect;
|
2008-04-24 04:01:53 +00:00
|
|
|
int vidmode;
|
2008-04-24 03:58:16 +00:00
|
|
|
int fullscreen;
|
2008-04-20 21:37:12 +00:00
|
|
|
int vo_dbpp;
|
2008-05-01 08:14:29 +00:00
|
|
|
float vo_panscanrange;
|
video, options: implement better YUV->RGB conversion control
Rewrite control of the colorspace and input/output level parameters
used in YUV-RGB conversions, replacing VO-specific suboptions with new
common options and adding configuration support to more cases.
Add new option --colormatrix which selects the colorspace the original
video is assumed to have in YUV->RGB conversions. The default
behavior changes from assuming BT.601 to colorspace autoselection
between BT.601 and BT.709 using a simple heuristic based on video
size. Add new options --colormatrix-input-range and
--colormatrix-output-range which select input YUV and output RGB range.
Disable the previously existing VO-specific colorspace and level
conversion suboptions in vo_gl and vo_vdpau. Remove the
"yuv_colorspace" property and replace it with one named "colormatrix"
and semantics matching the new option. Add new properties matching the
options for level conversion.
Colorspace selection is currently supported by vo_gl, vo_vdpau, vo_xv
and vf_scale, and all can change it at runtime (previously only
vo_vdpau and vo_xv could). vo_vdpau now uses the same conversion
matrix generation as vo_gl instead of libvdpau functionality; the main
functional difference is that the "contrast" equalizer control behaves
somewhat differently (it scales the Y component around 1/2 instead of
around 0, so that contrast 0 makes the image gray rather than black).
vo_xv does not support level conversion. vf_scale supports range
setting for input, but always outputs full-range RGB.
The value of the slave properties is the policy setting used for
conversions. This means they can be set to any value regardless of
whether the current VO supports that value or whether there currently
even is any video. Possibly separate properties could be added to
query the conversion actually used at the moment, if any.
Because the colorspace and level settings are now set with a single
VF/VO control call, the return value of that is no longer used to
signal whether all the settings are actually supported. Instead code
should set all the details it can support, and ignore the rest. The
core will use GET_YUV_COLORSPACE to check which colorspace details
have been set and which not. In other words, the return value for
SET_YUV_COLORSPACE only signals whether any kind of YUV colorspace
conversion handling exists at all, and VOs have to take care to return
the actual state with GET_YUV_COLORSPACE instead.
To be changed in later commits: add missing option documentation.
2011-10-15 21:50:21 +00:00
|
|
|
int requested_colorspace;
|
|
|
|
int requested_input_range;
|
|
|
|
int requested_output_range;
|
2011-12-08 10:17:59 +00:00
|
|
|
int cursor_autohide_delay;
|
2008-04-25 04:12:05 +00:00
|
|
|
|
|
|
|
// ranges -100 - 100, 1000 if the vo default should be used
|
|
|
|
int vo_gamma_gamma;
|
|
|
|
int vo_gamma_brightness;
|
|
|
|
int vo_gamma_contrast;
|
|
|
|
int vo_gamma_saturation;
|
|
|
|
int vo_gamma_hue;
|
|
|
|
|
2009-03-29 23:06:58 +00:00
|
|
|
int osd_level;
|
|
|
|
int osd_duration;
|
2011-04-12 15:11:12 +00:00
|
|
|
int osd_fractions;
|
2011-02-07 23:35:51 +00:00
|
|
|
char *vobsub_name;
|
2010-11-13 21:10:58 +00:00
|
|
|
int auto_quality;
|
2012-07-29 22:27:50 +00:00
|
|
|
int untimed;
|
2008-04-21 02:18:40 +00:00
|
|
|
int loop_times;
|
2009-04-07 23:37:27 +00:00
|
|
|
int ordered_chapters;
|
2010-11-26 14:56:05 +00:00
|
|
|
int chapter_merge_threshold;
|
2010-11-12 20:04:16 +00:00
|
|
|
int quiet;
|
2011-01-11 15:28:10 +00:00
|
|
|
int noconfig;
|
2012-08-19 13:31:38 +00:00
|
|
|
int stream_cache_size;
|
2010-11-11 15:36:09 +00:00
|
|
|
float stream_cache_min_percent;
|
|
|
|
float stream_cache_seek_min_percent;
|
2010-04-24 17:09:31 +00:00
|
|
|
int chapterrange[2];
|
2009-12-01 12:28:34 +00:00
|
|
|
int edition_id;
|
2008-04-25 10:30:44 +00:00
|
|
|
int correct_pts;
|
2008-04-16 04:11:12 +00:00
|
|
|
int user_correct_pts;
|
2009-11-21 18:53:10 +00:00
|
|
|
int user_pts_assoc_mode;
|
2010-11-13 17:27:01 +00:00
|
|
|
int initial_audio_sync;
|
2010-12-14 23:09:47 +00:00
|
|
|
int hr_seek;
|
2011-11-06 14:54:57 +00:00
|
|
|
float hr_seek_demuxer_offset;
|
2010-11-12 20:04:16 +00:00
|
|
|
int autosync;
|
|
|
|
int softsleep;
|
2010-11-13 21:10:58 +00:00
|
|
|
int term_osd;
|
|
|
|
char *term_osd_esc;
|
|
|
|
char *playing_msg;
|
|
|
|
int player_idle_mode;
|
|
|
|
int consolecontrols;
|
2008-04-29 12:44:03 +00:00
|
|
|
int doubleclick_time;
|
2010-11-13 21:10:58 +00:00
|
|
|
int list_properties;
|
2011-07-28 08:39:43 +00:00
|
|
|
double seek_to_sec;
|
2012-02-08 23:36:53 +00:00
|
|
|
int start_paused;
|
2008-04-23 04:01:31 +00:00
|
|
|
int audio_id;
|
|
|
|
int video_id;
|
2008-04-23 04:41:17 +00:00
|
|
|
int sub_id;
|
2011-02-18 14:32:40 +00:00
|
|
|
char **audio_lang;
|
|
|
|
char **sub_lang;
|
2012-08-25 18:22:39 +00:00
|
|
|
int sub_visibility;
|
2010-11-11 15:34:53 +00:00
|
|
|
int hr_mp3_seek;
|
2012-03-02 19:24:34 +00:00
|
|
|
char *quvi_format;
|
2010-11-11 14:24:17 +00:00
|
|
|
|
|
|
|
char *audio_stream;
|
|
|
|
int audio_stream_cache;
|
|
|
|
char *sub_stream;
|
|
|
|
char *demuxer_name;
|
|
|
|
char *audio_demuxer_name;
|
|
|
|
char *sub_demuxer_name;
|
|
|
|
int extension_parsing;
|
|
|
|
|
2012-08-06 15:48:30 +00:00
|
|
|
struct image_writer_opts *screenshot_image_opts;
|
screenshot: make screenshot filenames configurable
This adds the --screenshot-template option, which specifies a template
for the filename used for a screenshot. The '%' character is parsed as
format specifier. These format specifiers insert metadata into the
filename. For example, '%f' is replaced with the filename of the
currently played file.
The following format specifiers are available:
%n Insert sequence number (padded with 4 zeros), e.g. "0002".
%0Nn Like %n, but pad to N zeros (N = 0 to 9).
%n behaves like %04n.
%#n Like %n, but reset the sequence counter on every screenshot.
(Useful if other parts in the template make the resulting
filename already mostly unique.)
%#0Nn Use %0Nn and %#n at the same time.
%f Insert filename of the currently played video.
%F Like %f, but with stripped file extension ("." and rest).
%p Insert current playback time, in HH:MM:SS format.
%P Like %p, but adds milliseconds: HH:MM:SS.mmmm
%tX Insert the current local date/time, using the date format X.
X is a single letter and is passed to strftime() as "%X".
E.g. "%td" inserts the number of the current day.
%{prop} Insert the value of the slave property 'prop'.
E.g. %{filename} is the same as %f. If the property doesn't
exist or is not available, nothing is inserted, unless a
fallback is specified as in %{prop:fallback text}.
%% Insert the character '%'.
The strings inserted by format specifiers will be checked for
characters not allowed in filenames (including '/' and '\'), and
replaced with the placeholder '_'. (This doesn't happen for text that
was passed with the --screenshot-template option, and allows specifying
a screenshot target directory by prefixing the template with a relative
or absolute path.)
2012-02-29 02:46:25 +00:00
|
|
|
char *screenshot_template;
|
2011-10-06 18:46:02 +00:00
|
|
|
|
2010-10-31 05:26:40 +00:00
|
|
|
int audio_output_channels;
|
|
|
|
int audio_output_format;
|
2008-04-21 03:55:23 +00:00
|
|
|
float playback_speed;
|
2010-06-02 15:30:51 +00:00
|
|
|
float drc_level;
|
2008-04-25 10:58:12 +00:00
|
|
|
struct m_obj_settings *vf_settings;
|
2008-04-24 04:14:05 +00:00
|
|
|
int softzoom;
|
2008-04-24 04:36:43 +00:00
|
|
|
float movie_aspect;
|
2008-04-24 04:28:20 +00:00
|
|
|
float screen_size_xy;
|
2008-04-24 04:14:05 +00:00
|
|
|
int flip;
|
2008-04-24 05:20:59 +00:00
|
|
|
int vd_use_slices;
|
2011-02-07 23:35:51 +00:00
|
|
|
char **sub_name;
|
2011-03-03 10:31:12 +00:00
|
|
|
char **sub_paths;
|
2011-02-07 23:35:51 +00:00
|
|
|
int sub_auto;
|
2009-12-02 15:36:59 +00:00
|
|
|
int ass_enabled;
|
2011-09-03 10:47:56 +00:00
|
|
|
float ass_font_scale;
|
|
|
|
float ass_line_spacing;
|
|
|
|
int ass_top_margin;
|
|
|
|
int ass_bottom_margin;
|
|
|
|
int ass_use_margins;
|
2011-08-04 19:47:36 +00:00
|
|
|
int ass_vsfilter_aspect_compat;
|
2011-09-03 10:47:56 +00:00
|
|
|
int use_embedded_fonts;
|
2011-07-23 02:13:25 +00:00
|
|
|
char **ass_force_style_list;
|
2011-09-03 10:47:56 +00:00
|
|
|
char *ass_color;
|
|
|
|
char *ass_border_color;
|
|
|
|
char *ass_styles_file;
|
|
|
|
int ass_hinting;
|
2008-04-24 00:59:21 +00:00
|
|
|
struct lavc_param {
|
|
|
|
int workaround_bugs;
|
|
|
|
int error_resilience;
|
|
|
|
int error_concealment;
|
|
|
|
int gray;
|
|
|
|
int vstats;
|
|
|
|
int idct_algo;
|
|
|
|
int debug;
|
|
|
|
int vismv;
|
|
|
|
int skip_top;
|
|
|
|
int skip_bottom;
|
|
|
|
int fast;
|
|
|
|
char *lowres_str;
|
|
|
|
char *skip_loop_filter_str;
|
|
|
|
char *skip_idct_str;
|
|
|
|
char *skip_frame_str;
|
|
|
|
int threads;
|
|
|
|
int bitexact;
|
2008-05-15 18:19:35 +00:00
|
|
|
char *avopt;
|
2008-04-24 00:59:21 +00:00
|
|
|
} lavc_param;
|
2010-04-23 19:08:18 +00:00
|
|
|
|
|
|
|
struct lavfdopts {
|
|
|
|
unsigned int probesize;
|
|
|
|
unsigned int analyzeduration;
|
|
|
|
char *format;
|
|
|
|
char *cryptokey;
|
|
|
|
char *avopt;
|
|
|
|
} lavfdopts;
|
|
|
|
|
2008-04-30 15:57:02 +00:00
|
|
|
struct input_conf {
|
|
|
|
char *config_file;
|
2011-07-17 01:47:50 +00:00
|
|
|
int key_fifo_size;
|
2008-04-30 15:57:02 +00:00
|
|
|
unsigned int ar_delay;
|
|
|
|
unsigned int ar_rate;
|
|
|
|
char *js_dev;
|
2008-06-04 05:10:48 +00:00
|
|
|
char *ar_dev;
|
2008-04-30 15:57:02 +00:00
|
|
|
char *in_file;
|
|
|
|
int use_joystick;
|
|
|
|
int use_lirc;
|
|
|
|
int use_lircc;
|
|
|
|
int use_ar; // apple remote
|
2009-03-31 23:26:34 +00:00
|
|
|
int default_bindings;
|
2008-04-30 15:57:02 +00:00
|
|
|
} input;
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
struct encode_output_conf {
|
|
|
|
char *file;
|
|
|
|
char *format;
|
|
|
|
char **fopts;
|
|
|
|
float fps;
|
|
|
|
char *vcodec;
|
|
|
|
char **vopts;
|
|
|
|
char *acodec;
|
|
|
|
char **aopts;
|
|
|
|
int harddup;
|
|
|
|
float voffset;
|
|
|
|
float aoffset;
|
|
|
|
int copyts;
|
|
|
|
int rawts;
|
|
|
|
int autofps;
|
|
|
|
int neverdrop;
|
|
|
|
} encode_output;
|
2008-03-31 03:19:29 +00:00
|
|
|
} MPOpts;
|
|
|
|
|
|
|
|
#endif
|