mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6a6aa3a1ea
This is an integrated patch which includes: 1. Bug 891705: [MediaEncoder] Implement WebM 1.0 container writer. r=giles, r=gps 2. Bug 950567: [MediaEncoder] Phase-in libmkv library. r=giles 3. bug 883749: Implement Vorbis encoding. r=rillian 4. bug 881840: Implement VP8 track encoder. r=rillian
94 lines
3.0 KiB
C++
94 lines
3.0 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-*/
|
|
/* 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 VP8TrackEncoder_h_
|
|
#define VP8TrackEncoder_h_
|
|
|
|
#include "TrackEncoder.h"
|
|
#include "vpx/vpx_codec.h"
|
|
|
|
namespace mozilla {
|
|
|
|
typedef struct vpx_codec_ctx vpx_codec_ctx_t;
|
|
typedef struct vpx_codec_enc_cfg vpx_codec_enc_cfg_t;
|
|
typedef struct vpx_image vpx_image_t;
|
|
|
|
/**
|
|
* VP8TrackEncoder implements VideoTrackEncoder by using libvpx library.
|
|
* We implement a realtime and fixed FPS encoder. In order to achieve that,
|
|
* there is a pick target frame and drop frame encoding policy implemented in
|
|
* GetEncodedTrack.
|
|
*/
|
|
class VP8TrackEncoder : public VideoTrackEncoder
|
|
{
|
|
enum EncodeOperation {
|
|
ENCODE_NORMAL_FRAME, // VP8 track encoder works normally.
|
|
ENCODE_I_FRAME, // The next frame will be encoded as I-Frame.
|
|
SKIP_FRAME, // Skip the next frame.
|
|
};
|
|
public:
|
|
VP8TrackEncoder();
|
|
virtual ~VP8TrackEncoder();
|
|
|
|
already_AddRefed<TrackMetadataBase> GetMetadata() MOZ_FINAL MOZ_OVERRIDE;
|
|
|
|
nsresult GetEncodedTrack(EncodedFrameContainer& aData) MOZ_FINAL MOZ_OVERRIDE;
|
|
|
|
protected:
|
|
nsresult Init(int32_t aWidth, int32_t aHeight,
|
|
TrackRate aTrackRate) MOZ_FINAL MOZ_OVERRIDE;
|
|
|
|
private:
|
|
// Calculate the target frame's encoded duration.
|
|
TrackTicks CalculateEncodedDuration(TrackTicks aDurationCopied);
|
|
|
|
// Calculate the mRemainingTicks for next target frame.
|
|
TrackTicks CalculateRemainingTicks(TrackTicks aDurationCopied,
|
|
TrackTicks aEncodedDuration);
|
|
|
|
// Get the EncodeOperation for next target frame.
|
|
EncodeOperation GetNextEncodeOperation(TimeDuration aTimeElapsed,
|
|
TrackTicks aProcessedDuration);
|
|
|
|
// Get the encoded data from encoder to aData.
|
|
nsresult GetEncodedPartitions(EncodedFrameContainer& aData);
|
|
|
|
// Prepare the input data to the mVPXImageWrapper for encoding.
|
|
nsresult PrepareRawFrame(VideoChunk &aChunk);
|
|
|
|
// Prepare the muted frame data to the mVPXImageWrapper for encoding.
|
|
void PrepareMutedFrame();
|
|
|
|
// Output frame rate.
|
|
uint32_t mEncodedFrameRate;
|
|
// Duration for the output frame, reciprocal to mEncodedFrameRate.
|
|
TrackTicks mEncodedFrameDuration;
|
|
// Encoded timestamp.
|
|
TrackTicks mEncodedTimestamp;
|
|
// Duration to the next encode frame.
|
|
TrackTicks mRemainingTicks;
|
|
|
|
// Muted frame, we only create it once.
|
|
nsTArray<uint8_t> mMuteFrame;
|
|
|
|
/**
|
|
* A local segment queue which takes the raw data out from mRawSegment in the
|
|
* call of GetEncodedTrack(). Since we implement the fixed FPS encoding
|
|
* policy, it needs to be global in order to store the leftover segments
|
|
* taken from mRawSegment.
|
|
*/
|
|
VideoSegment mSourceSegment;
|
|
|
|
// VP8 relative members.
|
|
// Codec context structure.
|
|
nsAutoPtr<vpx_codec_ctx_t> mVPXContext;
|
|
// Image Descriptor.
|
|
nsAutoPtr<vpx_image_t> mVPXImageWrapper;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif
|