📄 unichromeoutputprocessor.h
字号:
//// Copyright (c) 2004 by Istv醤 V醨adi//// This file is part of dxr3Player, a DVD player written specifically // for the DXR3 (aka Hollywood+) decoder card.// This program is free software; you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation; either version 2 of the License, or// (at your option) any later version.//// This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// along with this program; if not, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA#ifndef DXR3PLAYER_OUTPUT_UNICHROMEOUTPUTPROCESSOR_H#define DXR3PLAYER_OUTPUT_UNICHROMEOUTPUTPROCESSOR_H//------------------------------------------------------------------------------#include "config.h"#include "output/BasicOutputProcessor.h"#include "output/SystemTimer.h"#include "output/OSSSoundcard.h"#include "output/AudioHandler.h"#include "output/unichrome/VideoHandler.h"#include "output/unichrome/SPUHandler.h"#include "output/unichrome/OSDHandler.h"#include "unichrome/Unichrome.h"//------------------------------------------------------------------------------namespace output {//------------------------------------------------------------------------------/** * Output processor for Unichrome output. */class UnichromeOutputProcessor : public BasicOutputProcessor{private: /** * The timer. */ output::SystemTimer timer; /** * The video output device. */ ::unichrome::Unichrome videoDevice; /** * The audio device to use. */ output::OSSSoundcard audioDevice; /** * The audio handler. */ output::AudioHandler audioHandler; /** * The SPU handler. */ output::unichrome::SPUHandler spuHandler; /** * The video handler. */ output::unichrome::VideoHandler videoHandler; /** * The OSD handler. */ output::unichrome::OSDHandler osdHandler;public: /** * Construct the output processor with the given input queue. */ UnichromeOutputProcessor(dvd::packet::PacketQueue& inputQueue, dvd::DVD& dvd, dvd::vm::ProcessorCommandQueue& processorCommandQueue); /** * @see BasicOutputProcessor::reset */ virtual void reset(playMode_t newPlayMode, bool hasDVD); /** * @see OutputProcessor::increaseBrightness */ virtual unsigned increaseBrightness(); /** * @see OutputProcessor::decreaseBrightness */ virtual unsigned decreaseBrightness(); /** * @see OutputProcessor::increaseContrast */ virtual unsigned increaseContrast(); /** * @see OutputProcessor::decreaseContrast */ virtual unsigned decreaseContrast(); /** * @see OutputProcessor::increaseSaturation */ virtual unsigned increaseSaturation(); /** * @see OutputProcessor::decreaseSaturation */ virtual unsigned decreaseSaturation(); /** * @see OutputProcessor::toggleOutput */ virtual void toggleOutput(); private: /** * @see BasicOutputProcessor::startPlaybackSequence */ virtual void startPlaybackSequence(); /** * @see BasicOutputProcessor::isDifferent */ virtual bool isDifferent(const AVAttributes& attributes) const; /** * @see BasicOutputProcessor::updateAVAttributes */ virtual void updateAVAttributes(); /** * @see BasicOutputProcessor::processCurrentVOBUEnd */ virtual void processCurrentVOBUEnd();};//------------------------------------------------------------------------------} /* namespace output *///------------------------------------------------------------------------------#endif // DXR3PLAYER_OUTPUT_UNICHROME_UNICHROMEOUTPUTPROCESSOR_H// Local variables:// mode: c++// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -