diff options
author | phintuka <phintuka> | 2007-06-18 11:43:59 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-06-18 11:43:59 +0000 |
commit | 689ba0af1b5ede835abe61a803f7e07c0acd6c62 (patch) | |
tree | 0a3ef26d0b544a2595c7ce19038ee9abbb9732a1 /config.c | |
parent | ebac9d843007653b41cab57dbfd1573e3d234b0c (diff) | |
download | xineliboutput-689ba0af1b5ede835abe61a803f7e07c0acd6c62.tar.gz xineliboutput-689ba0af1b5ede835abe61a803f7e07c0acd6c62.tar.bz2 |
Move subtitle position to config_t
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: config.c,v 1.40 2007-06-12 19:28:37 phintuka Exp $ + * $Id: config.c,v 1.41 2007-06-18 11:43:59 phintuka Exp $ * */ @@ -291,6 +291,7 @@ config_t::config_t() { ffmpeg_pp = 0; ffmpeg_pp_quality = 3; strn0cpy(ffmpeg_pp_mode, "de", sizeof(ffmpeg_pp_mode)); + subtitle_vpos = 0; unsharp = 0; unsharp_luma_matrix_width = 5; @@ -365,11 +366,12 @@ config_t::config_t() { use_x_keyboard = 1; + // video settings + overscan = 0; hue = -1; saturation = -1; contrast = -1; brightness = -1; - overscan = 0; strn0cpy(browse_files_dir, VideoDirectory, sizeof(browse_files_dir)); strn0cpy(browse_music_dir, VideoDirectory, sizeof(browse_music_dir)); |