diff options
author | phintuka <phintuka> | 2006-09-19 04:18:55 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-09-19 04:18:55 +0000 |
commit | b7f5445e3150d53bdea70bf8fa074a0b8d63b5ab (patch) | |
tree | bcabb3d7311736d9ad797d077d8c16a8633d9e79 | |
parent | 51fe44b2af5a65f3735cb47ac886993f4c25c749 (diff) | |
download | xineliboutput-b7f5445e3150d53bdea70bf8fa074a0b8d63b5ab.tar.gz xineliboutput-b7f5445e3150d53bdea70bf8fa074a0b8d63b5ab.tar.bz2 |
Frontend version check
ffmpeg postprocessing
-rw-r--r-- | frontend_local.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/frontend_local.c b/frontend_local.c index a2b80ffd..9594caea 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.9 2006-08-25 04:03:11 phintuka Exp $ + * $Id: frontend_local.c,v 1.10 2006-09-19 04:18:55 phintuka Exp $ * */ @@ -397,6 +397,7 @@ void cXinelibLocal::Action(void) m_StreamPos = 0; Xine_Control("STREAMPOS 0"); + Xine_Control("VERSION " XINELIBOUTPUT_VERSION " " "\r\n"); } // configure frontend and xine @@ -409,6 +410,9 @@ void cXinelibLocal::Action(void) ConfigurePostprocessing("upmix", xc.audio_upmix ? true : false, NULL); ConfigurePostprocessing("autocrop", xc.autocrop ? true : false, xc.AutocropOptions()); + ConfigurePostprocessing("pp", xc.ffmpeg_pp ? true : false, + xc.FfmpegPpOptions()); + #ifdef ENABLE_TEST_POSTPLUGINS ConfigurePostprocessing("headphone", xc.headphone ? true : false, NULL); #endif |