diff options
author | phintuka <phintuka> | 2006-09-19 04:20:31 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-09-19 04:20:31 +0000 |
commit | c497e5bb893086ec3eac0ecf11e875815d814e27 (patch) | |
tree | e5582d8900bf4f89281539f0cc60c0b4bef1815e | |
parent | b7f5445e3150d53bdea70bf8fa074a0b8d63b5ab (diff) | |
download | xineliboutput-c497e5bb893086ec3eac0ecf11e875815d814e27.tar.gz xineliboutput-c497e5bb893086ec3eac0ecf11e875815d814e27.tar.bz2 |
HD mode (stub)
ffmpeg post processing
-rw-r--r-- | frontend_svr.c | 9 | ||||
-rw-r--r-- | frontend_svr.h | 3 |
2 files changed, 10 insertions, 2 deletions
diff --git a/frontend_svr.c b/frontend_svr.c index 063484b5..84bd2ddb 100644 --- a/frontend_svr.c +++ b/frontend_svr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_svr.c,v 1.20 2006-09-03 12:11:50 phintuka Exp $ + * $Id: frontend_svr.c,v 1.21 2006-09-19 04:20:31 phintuka Exp $ * */ @@ -350,6 +350,11 @@ int cXinelibServer::Play_PES(const uchar *data, int len) return len; } +void cXinelibServer::SetHDMode(bool On) +{ + cXinelibThread::SetHDMode(On); + // TODO +} void cXinelibServer::Xine_Sync(void) { @@ -1034,6 +1039,8 @@ void cXinelibServer::Handle_Control_CONFIG(int cli) 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 diff --git a/frontend_svr.h b/frontend_svr.h index 01f1034a..77859e16 100644 --- a/frontend_svr.h +++ b/frontend_svr.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_svr.h,v 1.7 2006-09-03 12:11:50 phintuka Exp $ + * $Id: frontend_svr.h,v 1.8 2006-09-19 04:20:31 phintuka Exp $ * */ @@ -47,6 +47,7 @@ class cXinelibServer : public cXinelibThread virtual int Play_PES(const uchar *buf, int len); virtual void OsdCmd(void *cmd); virtual int64_t GetSTC(); + virtual void SetHDMode(bool On); // Image grabbing virtual uchar *GrabImage(int &Size, bool Jpeg, int Quality, |