mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-14 15:37:55 +00:00
e4de5b19f4
Keep a reference to the AudioDecoderConfig so we can pass the appropriate values to the Adts method from our Input method.
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef __FFmpegAACDecoder_h__
|
|
#define __FFmpegAACDecoder_h__
|
|
|
|
#include "FFmpegDataDecoder.h"
|
|
#include "mp4_demuxer/DecoderData.h"
|
|
|
|
namespace mozilla
|
|
{
|
|
|
|
template <int V> class FFmpegAudioDecoder
|
|
{
|
|
};
|
|
|
|
template <>
|
|
class FFmpegAudioDecoder<LIBAV_VER> : public FFmpegDataDecoder<LIBAV_VER>
|
|
{
|
|
public:
|
|
FFmpegAudioDecoder(MediaTaskQueue* aTaskQueue,
|
|
MediaDataDecoderCallback* aCallback,
|
|
const mp4_demuxer::AudioDecoderConfig& aConfig);
|
|
virtual ~FFmpegAudioDecoder();
|
|
|
|
virtual nsresult Init() MOZ_OVERRIDE;
|
|
virtual nsresult Input(mp4_demuxer::MP4Sample* aSample) MOZ_OVERRIDE;
|
|
virtual nsresult Drain() MOZ_OVERRIDE;
|
|
static AVCodecID GetCodecId(const char* aMimeType);
|
|
|
|
private:
|
|
void DecodePacket(mp4_demuxer::MP4Sample* aSample);
|
|
|
|
MediaDataDecoderCallback* mCallback;
|
|
const mp4_demuxer::AudioDecoderConfig& mConfig;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // __FFmpegAACDecoder_h__
|