2010-05-06 02:31:02 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is the Mozilla Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Chris Double <chris.double@double.co.nz>
|
|
|
|
* Chris Pearce <chris@pearce.org.nz>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#if !defined(nsOggReader_h_)
|
|
|
|
#define nsOggReader_h_
|
|
|
|
|
|
|
|
#include <ogg/ogg.h>
|
|
|
|
#include <theora/theoradec.h>
|
2010-10-19 02:55:45 +00:00
|
|
|
#ifdef MOZ_TREMOR
|
|
|
|
#include <tremor/ivorbiscodec.h>
|
|
|
|
#else
|
2010-05-06 02:31:02 +00:00
|
|
|
#include <vorbis/codec.h>
|
2010-10-19 02:55:45 +00:00
|
|
|
#endif
|
2010-05-06 02:31:02 +00:00
|
|
|
#include "nsBuiltinDecoderReader.h"
|
|
|
|
#include "nsOggCodecState.h"
|
2010-08-19 22:50:37 +00:00
|
|
|
#include "VideoUtils.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
2010-05-06 02:31:02 +00:00
|
|
|
|
|
|
|
class nsMediaDecoder;
|
2010-08-25 08:43:00 +00:00
|
|
|
class nsTimeRanges;
|
2010-05-06 02:31:02 +00:00
|
|
|
|
|
|
|
class nsOggReader : public nsBuiltinDecoderReader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsOggReader(nsBuiltinDecoder* aDecoder);
|
|
|
|
~nsOggReader();
|
|
|
|
|
2010-09-21 00:49:50 +00:00
|
|
|
virtual nsresult Init(nsBuiltinDecoderReader* aCloneDonor);
|
2010-05-06 02:31:02 +00:00
|
|
|
virtual nsresult ResetDecode();
|
|
|
|
virtual PRBool DecodeAudioData();
|
|
|
|
|
|
|
|
// If the Theora granulepos has not been captured, it may read several packets
|
|
|
|
// until one with a granulepos has been captured, to ensure that all packets
|
|
|
|
// read have valid time info.
|
|
|
|
virtual PRBool DecodeVideoFrame(PRBool &aKeyframeSkip,
|
|
|
|
PRInt64 aTimeThreshold);
|
2010-08-05 07:40:35 +00:00
|
|
|
|
2010-05-20 21:13:01 +00:00
|
|
|
virtual VideoData* FindStartTime(PRInt64 aOffset,
|
|
|
|
PRInt64& aOutStartTime);
|
2010-08-05 07:40:35 +00:00
|
|
|
|
|
|
|
// Get the end time of aEndOffset. This is the playback position we'd reach
|
|
|
|
// after playback finished at aEndOffset.
|
2010-05-06 02:31:02 +00:00
|
|
|
virtual PRInt64 FindEndTime(PRInt64 aEndOffset);
|
|
|
|
|
|
|
|
virtual PRBool HasAudio()
|
|
|
|
{
|
|
|
|
mozilla::MonitorAutoEnter mon(mMonitor);
|
|
|
|
return mVorbisState != 0 && mVorbisState->mActive;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual PRBool HasVideo()
|
|
|
|
{
|
|
|
|
mozilla::MonitorAutoEnter mon(mMonitor);
|
|
|
|
return mTheoraState != 0 && mTheoraState->mActive;
|
|
|
|
}
|
|
|
|
|
2010-05-19 03:04:33 +00:00
|
|
|
virtual nsresult ReadMetadata();
|
2010-08-19 22:50:37 +00:00
|
|
|
virtual nsresult Seek(PRInt64 aTime, PRInt64 aStartTime, PRInt64 aEndTime, PRInt64 aCurrentTime);
|
2010-08-25 08:43:00 +00:00
|
|
|
virtual nsresult GetBuffered(nsTimeRanges* aBuffered, PRInt64 aStartTime);
|
2010-08-05 07:40:35 +00:00
|
|
|
|
2010-05-06 02:31:02 +00:00
|
|
|
private:
|
2010-08-05 07:40:35 +00:00
|
|
|
|
2010-08-19 22:50:37 +00:00
|
|
|
PRBool HasSkeleton()
|
|
|
|
{
|
|
|
|
MonitorAutoEnter mon(mMonitor);
|
|
|
|
return mSkeletonState != 0 && mSkeletonState->mActive;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns PR_TRUE if we should decode up to the seek target rather than
|
|
|
|
// seeking to the target using a bisection search or index-assisted seek.
|
|
|
|
// We should do this if the seek target (aTarget, in ms), lies not too far
|
|
|
|
// ahead of the current playback position (aCurrentTime, in ms).
|
|
|
|
PRBool CanDecodeToTarget(PRInt64 aTarget,
|
|
|
|
PRInt64 aCurrentTime);
|
|
|
|
|
|
|
|
// Seeks to the keyframe preceeding the target time using available
|
|
|
|
// keyframe indexes.
|
|
|
|
enum IndexedSeekResult {
|
|
|
|
SEEK_OK, // Success.
|
|
|
|
SEEK_INDEX_FAIL, // Failure due to no index, or invalid index.
|
|
|
|
SEEK_FATAL_ERROR // Error returned by a stream operation.
|
|
|
|
};
|
|
|
|
IndexedSeekResult SeekToKeyframeUsingIndex(PRInt64 aTarget);
|
|
|
|
|
|
|
|
// Rolls back a seek-using-index attempt, returning a failure error code.
|
|
|
|
IndexedSeekResult RollbackIndexedSeek(PRInt64 aOffset);
|
|
|
|
|
|
|
|
// Seeks to aTarget ms in the buffered range aRange using bisection search,
|
|
|
|
// or to the keyframe prior to aTarget if we have video. aStartTime must be
|
|
|
|
// the presentation time at the start of media, and aEndTime the time at
|
|
|
|
// end of media. aRanges must be the time/byte ranges buffered in the media
|
|
|
|
// cache as per GetBufferedBytes().
|
|
|
|
nsresult SeekInBufferedRange(PRInt64 aTarget,
|
|
|
|
PRInt64 aStartTime,
|
|
|
|
PRInt64 aEndTime,
|
|
|
|
const nsTArray<ByteRange>& aRanges,
|
|
|
|
const ByteRange& aRange);
|
|
|
|
|
|
|
|
// Seeks to before aTarget ms in media using bisection search. If the media
|
|
|
|
// has video, this will seek to before the keyframe required to render the
|
|
|
|
// media at aTarget. Will use aRanges in order to narrow the bisection
|
|
|
|
// search space. aStartTime must be the presentation time at the start of
|
|
|
|
// media, and aEndTime the time at end of media. aRanges must be the time/byte
|
|
|
|
// ranges buffered in the media cache as per GetBufferedBytes().
|
|
|
|
nsresult SeekInUnbuffered(PRInt64 aTarget,
|
|
|
|
PRInt64 aStartTime,
|
|
|
|
PRInt64 aEndTime,
|
|
|
|
const nsTArray<ByteRange>& aRanges);
|
|
|
|
|
2010-08-05 07:40:35 +00:00
|
|
|
// Get the end time of aEndOffset. This is the playback position we'd reach
|
|
|
|
// after playback finished at aEndOffset. If PRBool aCachedDataOnly is
|
|
|
|
// PR_TRUE, then we'll only read from data which is cached in the media cached,
|
|
|
|
// otherwise we'll do regular blocking reads from the media stream.
|
|
|
|
// If PRBool aCachedDataOnly is PR_TRUE, and aState is not mOggState, this can
|
|
|
|
// safely be called on the main thread, otherwise it must be called on the
|
|
|
|
// state machine thread.
|
|
|
|
PRInt64 FindEndTime(PRInt64 aEndOffset,
|
|
|
|
PRBool aCachedDataOnly,
|
|
|
|
ogg_sync_state* aState);
|
|
|
|
|
2010-05-06 02:31:02 +00:00
|
|
|
// Decodes one packet of Vorbis data, storing the resulting chunks of
|
|
|
|
// PCM samples in aChunks.
|
2010-09-14 23:24:47 +00:00
|
|
|
nsresult DecodeVorbis(nsTArray<nsAutoPtr<SoundData> >& aChunks,
|
2010-05-06 02:31:02 +00:00
|
|
|
ogg_packet* aPacket);
|
|
|
|
|
|
|
|
// May return NS_ERROR_OUT_OF_MEMORY.
|
2010-09-14 23:24:47 +00:00
|
|
|
nsresult DecodeTheora(nsTArray<nsAutoPtr<VideoData> >& aFrames,
|
2010-05-06 02:31:02 +00:00
|
|
|
ogg_packet* aPacket);
|
|
|
|
|
|
|
|
// Read a page of data from the Ogg file. Returns the offset of the start
|
|
|
|
// of the page, or -1 if the page read failed.
|
|
|
|
PRInt64 ReadOggPage(ogg_page* aPage);
|
|
|
|
|
|
|
|
// Read a packet for an Ogg bitstream/codec state. Returns PR_TRUE on
|
|
|
|
// success, or PR_FALSE if the read failed.
|
|
|
|
PRBool ReadOggPacket(nsOggCodecState* aCodecState, ogg_packet* aPacket);
|
|
|
|
|
|
|
|
// Performs a seek bisection to move the media stream's read cursor to the
|
|
|
|
// last ogg page boundary which has end time before aTarget ms on both the
|
|
|
|
// Theora and Vorbis bitstreams. Limits its search to data inside aRange;
|
|
|
|
// i.e. it will only read inside of the aRange's start and end offsets.
|
|
|
|
// aFuzz is the number of ms of leniency we'll allow; we'll terminate the
|
|
|
|
// seek when we land in the range (aTime - aFuzz, aTime) ms.
|
|
|
|
nsresult SeekBisection(PRInt64 aTarget,
|
|
|
|
const ByteRange& aRange,
|
|
|
|
PRUint32 aFuzz);
|
|
|
|
|
2010-12-17 01:39:01 +00:00
|
|
|
// Returns true if the serial number is for a stream we encountered
|
|
|
|
// while reading metadata. Call on the main thread only.
|
|
|
|
PRBool IsKnownStream(PRUint32 aSerial);
|
|
|
|
|
2010-05-06 02:31:02 +00:00
|
|
|
private:
|
|
|
|
// Maps Ogg serialnos to nsOggStreams.
|
|
|
|
nsClassHashtable<nsUint32HashKey, nsOggCodecState> mCodecStates;
|
|
|
|
|
2010-12-17 01:39:01 +00:00
|
|
|
// Array of serial numbers of streams that were encountered during
|
|
|
|
// initial metadata load. Written on state machine thread during
|
|
|
|
// metadata loading and read on the main thread only after metadata
|
|
|
|
// is loaded.
|
|
|
|
nsAutoTArray<PRUint32,4> mKnownStreams;
|
|
|
|
|
2010-05-06 02:31:02 +00:00
|
|
|
// Decode state of the Theora bitstream we're decoding, if we have video.
|
|
|
|
nsTheoraState* mTheoraState;
|
|
|
|
|
|
|
|
// Decode state of the Vorbis bitstream we're decoding, if we have audio.
|
|
|
|
nsVorbisState* mVorbisState;
|
|
|
|
|
2010-08-19 22:50:37 +00:00
|
|
|
// Decode state of the Skeleton bitstream.
|
|
|
|
nsSkeletonState* mSkeletonState;
|
|
|
|
|
2010-05-06 02:31:02 +00:00
|
|
|
// Ogg decoding state.
|
|
|
|
ogg_sync_state mOggState;
|
|
|
|
|
2010-12-17 01:39:01 +00:00
|
|
|
// Vorbis/Theora data used to compute timestamps. This is written on the
|
|
|
|
// decoder thread and read on the main thread. All reading on the
|
|
|
|
// main thread must be done after metadataloaded. We can't use the
|
|
|
|
// existing data in the codec states due to threading issues.
|
|
|
|
// See bug 605457.
|
|
|
|
PRUint32 mVorbisSerial;
|
|
|
|
PRUint32 mTheoraSerial;
|
|
|
|
vorbis_info mVorbisInfo;
|
|
|
|
th_info mTheoraInfo;
|
|
|
|
|
2010-05-06 02:31:02 +00:00
|
|
|
// The offset of the end of the last page we've read, or the start of
|
|
|
|
// the page we're about to read.
|
|
|
|
PRInt64 mPageOffset;
|
|
|
|
|
|
|
|
// The granulepos of the last decoded Theora frame.
|
|
|
|
PRInt64 mTheoraGranulepos;
|
|
|
|
|
|
|
|
// The granulepos of the last decoded Vorbis sample.
|
|
|
|
PRInt64 mVorbisGranulepos;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|