/xbmc/cores/dvdplayer/DVDCodecs/Audio/DVDAudioCodecFFmpeg.h
http://github.com/xbmc/xbmc · C Header · 75 lines · 46 code · 10 blank · 19 comment · 0 complexity · 276f9e4eced8a6f33c83abb2edcf874f MD5 · raw file
- #pragma once
- /*
- * Copyright (C) 2005-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
- * <http://www.gnu.org/licenses/>.
- *
- */
- #include "DVDAudioCodec.h"
- #include "DllAvCodec.h"
- #include "DllAvFormat.h"
- #include "DllAvUtil.h"
- #include "DllSwResample.h"
- class CDVDAudioCodecFFmpeg : public CDVDAudioCodec
- {
- public:
- CDVDAudioCodecFFmpeg();
- virtual ~CDVDAudioCodecFFmpeg();
- virtual bool Open(CDVDStreamInfo &hints, CDVDCodecOptions &options);
- virtual void Dispose();
- virtual int Decode(uint8_t* pData, int iSize);
- virtual int GetData(uint8_t** dst);
- virtual void Reset();
- virtual int GetChannels();
- virtual CAEChannelInfo GetChannelMap();
- virtual int GetSampleRate();
- virtual int GetEncodedSampleRate();
- virtual enum AEDataFormat GetDataFormat();
- virtual const char* GetName() { return "FFmpeg"; }
- virtual int GetBufferSize() { return m_iBuffered; }
- virtual int GetBitRate();
- protected:
- AVCodecContext* m_pCodecContext;
- SwrContext* m_pConvert;
- enum AVSampleFormat m_iSampleFormat;
- CAEChannelInfo m_channelLayout;
- bool m_bLpcmMode;
- bool m_bNeedConversion;
- AVFrame* m_pFrame1;
- int m_iBufferSize1;
- uint8_t* m_pBuffer2;
- int m_iBufferSize2;
- int m_iBufferTotalSize2;
- bool m_bOpenedCodec;
- int m_iBuffered;
- int m_channels;
- uint64_t m_layout;
- DllAvCodec m_dllAvCodec;
- DllAvUtil m_dllAvUtil;
- DllSwResample m_dllSwResample;
- void BuildChannelMap();
- void ConvertToFloat();
- };