зеркало из https://github.com/mozilla/gecko-dev.git
108 строки
3.4 KiB
C++
108 строки
3.4 KiB
C++
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef MEDIA_MP4_TRACK_RUN_ITERATOR_H_
|
|
#define MEDIA_MP4_TRACK_RUN_ITERATOR_H_
|
|
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
#include "mp4_demuxer/box_definitions.h"
|
|
#include "mp4_demuxer/cenc.h"
|
|
#include "nsAutoPtr.h"
|
|
|
|
namespace mp4_demuxer {
|
|
|
|
class DecryptConfig;
|
|
|
|
Microseconds MicrosecondsFromRational(int64_t numer, int64_t denom);
|
|
|
|
struct SampleInfo;
|
|
struct TrackRunInfo;
|
|
|
|
class TrackRunIterator {
|
|
public:
|
|
// Create a new TrackRunIterator. A reference to |moov| will be retained for
|
|
// the lifetime of this object.
|
|
TrackRunIterator(const Movie* moov);
|
|
~TrackRunIterator();
|
|
|
|
void Reset();
|
|
|
|
// Sets up the iterator to handle all the runs from the current fragment.
|
|
bool Init(const MovieFragment& moof);
|
|
|
|
// Returns true if the properties of the current run or sample are valid.
|
|
bool IsRunValid() const;
|
|
bool IsSampleValid() const;
|
|
|
|
// Advance the properties to refer to the next run or sample. Requires that
|
|
// the current sample be valid.
|
|
void AdvanceRun();
|
|
void AdvanceSample();
|
|
|
|
// Returns true if this track run has auxiliary information and has not yet
|
|
// been cached. Only valid if IsRunValid().
|
|
bool AuxInfoNeedsToBeCached();
|
|
|
|
// Caches the CENC data from the given buffer. |buf| must be a buffer starting
|
|
// at the offset given by cenc_offset(), with a |size| of at least
|
|
// cenc_size(). Returns true on success, false on error.
|
|
//bool CacheAuxInfo(const uint8_t* buf, int size);
|
|
bool CacheAuxInfo(Stream* stream, int64_t moof_offset);
|
|
|
|
// Returns the maximum buffer location at which no data earlier in the stream
|
|
// will be required in order to read the current or any subsequent sample. You
|
|
// may clear all data up to this offset before reading the current sample
|
|
// safely. Result is in the same units as offset() (for Media Source this is
|
|
// in bytes past the the head of the MOOF box).
|
|
int64_t GetMaxClearOffset();
|
|
|
|
// Returns the minimum timestamp (or kInfiniteDuration if no runs present).
|
|
Microseconds GetMinDecodeTimestamp();
|
|
|
|
// Property of the current run. Only valid if IsRunValid().
|
|
uint32_t track_id() const;
|
|
int64_t aux_info_offset() const;
|
|
int aux_info_size() const;
|
|
bool is_encrypted() const;
|
|
bool is_audio() const;
|
|
// Only one is valid, based on the value of is_audio().
|
|
const AudioSampleEntry& audio_description() const;
|
|
const VideoSampleEntry& video_description() const;
|
|
|
|
// Properties of the current sample. Only valid if IsSampleValid().
|
|
int64_t sample_offset() const;
|
|
int sample_size() const;
|
|
Microseconds dts() const;
|
|
Microseconds cts() const;
|
|
Microseconds duration() const;
|
|
bool is_keyframe() const;
|
|
|
|
// Only call when is_encrypted() is true and AuxInfoNeedsToBeCached() is
|
|
// false. Result is owned by caller.
|
|
void GetDecryptConfig(nsAutoPtr<DecryptConfig>& config);
|
|
|
|
private:
|
|
void ResetRun();
|
|
const TrackEncryption& track_encryption() const;
|
|
|
|
const Movie* moov_;
|
|
|
|
std::vector<TrackRunInfo> runs_;
|
|
std::vector<TrackRunInfo>::const_iterator run_itr_;
|
|
std::vector<SampleInfo>::const_iterator sample_itr_;
|
|
|
|
std::vector<FrameCENCInfo> cenc_info_;
|
|
|
|
int64_t sample_dts_;
|
|
int64_t sample_offset_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TrackRunIterator);
|
|
};
|
|
|
|
} // namespace mp4_demuxer
|
|
|
|
#endif // MEDIA_MP4_TRACK_RUN_ITERATOR_H_
|