diff options
author | phintuka <phintuka> | 2006-08-07 17:12:29 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-08-07 17:12:29 +0000 |
commit | 7fb669237ef0884ba7a69dfb38c73e351ea55342 (patch) | |
tree | d15ff4c71271639ac30e5934ed9d6706c1cfce1a | |
parent | d29c3234b311f954e0d4c4348dc03abd04505e7e (diff) | |
download | xineliboutput-7fb669237ef0884ba7a69dfb38c73e351ea55342.tar.gz xineliboutput-7fb669237ef0884ba7a69dfb38c73e351ea55342.tar.bz2 |
Enabled letterbox -> 16:9 cropping setting
-rw-r--r-- | frontend_local.c | 4 | ||||
-rw-r--r-- | menu.c | 12 |
2 files changed, 6 insertions, 10 deletions
diff --git a/frontend_local.c b/frontend_local.c index 3f0959be..cf5a3f6f 100644 --- a/frontend_local.c +++ b/frontend_local.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_local.c,v 1.5 2006-07-02 17:06:06 phintuka Exp $ + * $Id: frontend_local.c,v 1.6 2006-08-07 17:12:29 phintuka Exp $ * */ @@ -393,8 +393,8 @@ void cXinelibLocal::Action(void) xc.audio_surround); ConfigureVideo(xc.hue, xc.saturation, xc.brightness, xc.contrast); ConfigurePostprocessing("upmix", xc.audio_upmix ? true : false, NULL); -#ifdef ENABLE_TEST_POSTPLUGINS ConfigurePostprocessing("autocrop", xc.autocrop ? true : false, NULL); +#ifdef ENABLE_TEST_POSTPLUGINS ConfigurePostprocessing("headphone", xc.headphone ? true : false, NULL); #endif LOGDBG("cXinelibLocal::Action - fe config OK"); @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: menu.c,v 1.2 2006-07-21 23:01:55 phintuka Exp $ + * $Id: menu.c,v 1.3 2006-08-07 17:12:29 phintuka Exp $ * */ @@ -665,19 +665,15 @@ cMenuXinelib::cMenuXinelib() Add(new cOsdItem(tr("Play file >>"), osUser1)); Add(new cOsdItem(tr("View images >>"), osUser2)); Add(new cOsdItem(tr("Play remote DVD >>"), osUser4)); -#if 1 if(cXinelibDevice::Instance().NumDvdSpuTracks() > 0) - Add(new cOsdItem(tr("Select DVD SPU Track >>"), osUser5)); -#endif + Add(new cOsdItem(tr(" Select DVD SPU Track >>"), osUser5)); + Add(ctrl_autocrop = new cMenuEditBoolItem(tr("Crop letterbox 4:3 to 16:9"), + &autocrop)); #ifdef ENABLE_TEST_POSTPLUGINS -#warning Experimental post plugins enabled ! Add(ctrl_headphone = new cMenuEditBoolItem(tr("Headphone audio mode"), &headphone)); - Add(ctrl_autocrop = new cMenuEditBoolItem(tr("Remove letterbox (4:3 -> 16:9)"), - &autocrop)); #else ctrl_headphone = NULL; - ctrl_autocrop = NULL; #endif #ifdef HAVE_XV_FIELD_ORDER |