mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 01:48:55 +00:00
113 lines
3.4 KiB
C++
113 lines
3.4 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 mozilla_AppleVDADecoder_h
|
|
#define mozilla_AppleVDADecoder_h
|
|
|
|
#include "PlatformDecoderModule.h"
|
|
#include "mozilla/ReentrantMonitor.h"
|
|
#include "MP4Reader.h"
|
|
#include "MP4Decoder.h"
|
|
#include "nsIThread.h"
|
|
#include "ReorderQueue.h"
|
|
|
|
#include "VideoDecodeAcceleration/VDADecoder.h"
|
|
|
|
namespace mozilla {
|
|
|
|
class FlushableMediaTaskQueue;
|
|
class MediaDataDecoderCallback;
|
|
namespace layers {
|
|
class ImageContainer;
|
|
}
|
|
|
|
class AppleVDADecoder : public MediaDataDecoder {
|
|
public:
|
|
class AppleFrameRef {
|
|
public:
|
|
Microseconds decode_timestamp;
|
|
Microseconds composition_timestamp;
|
|
Microseconds duration;
|
|
int64_t byte_offset;
|
|
bool is_sync_point;
|
|
|
|
explicit AppleFrameRef(const MediaRawData& aSample)
|
|
: decode_timestamp(aSample.mTimecode)
|
|
, composition_timestamp(aSample.mTime)
|
|
, duration(aSample.mDuration)
|
|
, byte_offset(aSample.mOffset)
|
|
, is_sync_point(aSample.mKeyframe)
|
|
{
|
|
}
|
|
|
|
AppleFrameRef(Microseconds aDts,
|
|
Microseconds aPts,
|
|
Microseconds aDuration,
|
|
int64_t aByte_offset,
|
|
bool aIs_sync_point)
|
|
: decode_timestamp(aDts)
|
|
, composition_timestamp(aPts)
|
|
, duration(aDuration)
|
|
, byte_offset(aByte_offset)
|
|
, is_sync_point(aIs_sync_point)
|
|
{
|
|
}
|
|
};
|
|
|
|
// Return a new created AppleVDADecoder or nullptr if media or hardware is
|
|
// not supported by current configuration.
|
|
static already_AddRefed<AppleVDADecoder> CreateVDADecoder(
|
|
const VideoInfo& aConfig,
|
|
FlushableMediaTaskQueue* aVideoTaskQueue,
|
|
MediaDataDecoderCallback* aCallback,
|
|
layers::ImageContainer* aImageContainer);
|
|
|
|
AppleVDADecoder(const VideoInfo& aConfig,
|
|
FlushableMediaTaskQueue* aVideoTaskQueue,
|
|
MediaDataDecoderCallback* aCallback,
|
|
layers::ImageContainer* aImageContainer);
|
|
virtual ~AppleVDADecoder();
|
|
virtual nsresult Init() override;
|
|
virtual nsresult Input(MediaRawData* aSample) override;
|
|
virtual nsresult Flush() override;
|
|
virtual nsresult Drain() override;
|
|
virtual nsresult Shutdown() override;
|
|
|
|
nsresult OutputFrame(CVPixelBufferRef aImage,
|
|
nsAutoPtr<AppleFrameRef> aFrameRef);
|
|
|
|
protected:
|
|
AppleFrameRef* CreateAppleFrameRef(const MediaRawData* aSample);
|
|
void DrainReorderedFrames();
|
|
void ClearReorderedFrames();
|
|
CFDictionaryRef CreateOutputConfiguration();
|
|
|
|
nsRefPtr<MediaByteBuffer> mExtraData;
|
|
nsRefPtr<FlushableMediaTaskQueue> mTaskQueue;
|
|
MediaDataDecoderCallback* mCallback;
|
|
nsRefPtr<layers::ImageContainer> mImageContainer;
|
|
ReorderQueue mReorderQueue;
|
|
uint32_t mPictureWidth;
|
|
uint32_t mPictureHeight;
|
|
uint32_t mDisplayWidth;
|
|
uint32_t mDisplayHeight;
|
|
uint32_t mMaxRefFrames;
|
|
|
|
private:
|
|
VDADecoder mDecoder;
|
|
bool mIs106;
|
|
|
|
// Method to pass a frame to VideoToolbox for decoding.
|
|
nsresult SubmitFrame(MediaRawData* aSample);
|
|
// Method to set up the decompression session.
|
|
nsresult InitializeSession();
|
|
CFDictionaryRef CreateDecoderSpecification();
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_AppleVDADecoder_h
|