#pragma once /* * Copyright (C) 2012-2013 Team XBMC * http://xbmc.org * * 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, 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 XBMC; see the file COPYING. If not, see * . * */ #include "DVDDemux.h" #include #include "pvr/addons/PVRClient.h" extern "C" { #include "libavcodec/avcodec.h" #include "libavformat/avformat.h" } class CDVDDemuxPVRClient; struct PVR_STREAM_PROPERTIES; class CDemuxStreamPVRInternal { public: CDemuxStreamPVRInternal(CDVDDemuxPVRClient *parent); ~CDemuxStreamPVRInternal(); void DisposeParser(); CDVDDemuxPVRClient * m_parent; AVCodecParserContext* m_parser; AVCodecContext * m_context; bool m_parser_split; }; class CDemuxStreamVideoPVRClient : public CDemuxStreamVideo , public CDemuxStreamPVRInternal { public: CDemuxStreamVideoPVRClient(CDVDDemuxPVRClient *parent) : CDemuxStreamPVRInternal(parent) {} virtual void GetStreamInfo(std::string& strInfo); }; class CDemuxStreamAudioPVRClient : public CDemuxStreamAudio , public CDemuxStreamPVRInternal { public: CDemuxStreamAudioPVRClient(CDVDDemuxPVRClient *parent) : CDemuxStreamPVRInternal(parent) {} virtual void GetStreamInfo(std::string& strInfo); }; class CDemuxStreamSubtitlePVRClient : public CDemuxStreamSubtitle , public CDemuxStreamPVRInternal { public: CDemuxStreamSubtitlePVRClient(CDVDDemuxPVRClient *parent) : CDemuxStreamPVRInternal(parent) {} virtual void GetStreamInfo(std::string& strInfo); }; class CDVDDemuxPVRClient : public CDVDDemux { friend class CDemuxStreamPVRInternal; public: CDVDDemuxPVRClient(); ~CDVDDemuxPVRClient(); bool Open(CDVDInputStream* pInput); void Dispose(); void Reset(); void Abort(); void Flush(); DemuxPacket* Read(); bool SeekTime(int time, bool backwords = false, double* startpts = NULL); void SetSpeed(int iSpeed); int GetStreamLength() { return 0; } CDemuxStream* GetStream(int iStreamId); int GetNrOfStreams(); std::string GetFileName(); virtual void GetStreamCodecName(int iStreamId, std::string &strName); protected: CDVDInputStream* m_pInput; #ifndef MAX_STREAMS #define MAX_STREAMS 100 #endif CDemuxStream* m_streams[MAX_STREAMS]; // maximum number of streams that ffmpeg can handle std::shared_ptr m_pvrClient; private: void RequestStreams(); void ParsePacket(DemuxPacket* pPacket); void DisposeStream(int iStreamId); };