/* -*- 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/. */ #include "MP4Reader.h" #include "MediaResource.h" #include "mp4_demuxer/mp4_demuxer.h" #include "mp4_demuxer/Streams.h" #include "nsSize.h" #include "VideoUtils.h" #include "mozilla/dom/HTMLMediaElement.h" #include "ImageContainer.h" #include "Layers.h" using mozilla::layers::Image; using mozilla::layers::LayerManager; using mozilla::layers::LayersBackend; #ifdef PR_LOGGING PRLogModuleInfo* GetDemuxerLog() { static PRLogModuleInfo* log = nullptr; if (!log) { log = PR_NewLogModule("MP4Demuxer"); } return log; } #define LOG(...) PR_LOG(GetDemuxerLog(), PR_LOG_DEBUG, (__VA_ARGS__)) #else #define LOG(...) #endif using namespace mp4_demuxer; namespace mozilla { // Uncomment to enable verbose per-sample logging. //#define LOG_SAMPLE_DECODE 1 class MP4Stream : public mp4_demuxer::Stream { public: MP4Stream(MediaResource* aResource) : mResource(aResource) { MOZ_COUNT_CTOR(MP4Stream); MOZ_ASSERT(aResource); } ~MP4Stream() { MOZ_COUNT_DTOR(MP4Stream); } virtual bool ReadAt(int64_t aOffset, uint8_t* aBuffer, uint32_t aCount, uint32_t* aBytesRead) MOZ_OVERRIDE { uint32_t sum = 0; do { uint32_t offset = aOffset + sum; char* buffer = reinterpret_cast(aBuffer + sum); uint32_t toRead = aCount - sum; uint32_t bytesRead = 0; nsresult rv = mResource->ReadAt(offset, buffer, toRead, &bytesRead); if (NS_FAILED(rv)) { return false; } sum += bytesRead; } while (sum < aCount); *aBytesRead = sum; return true; } virtual int64_t Length() const MOZ_OVERRIDE { return mResource->GetLength(); } private: RefPtr mResource; }; MP4Reader::MP4Reader(AbstractMediaDecoder* aDecoder) : MediaDecoderReader(aDecoder), mLayersBackendType(layers::LayersBackend::LAYERS_NONE), mHasAudio(false), mHasVideo(false) { MOZ_COUNT_CTOR(MP4Reader); } MP4Reader::~MP4Reader() { MOZ_COUNT_DTOR(MP4Reader); } void MP4Reader::InitLayersBackendType() { if (!IsVideoContentType(mDecoder->GetResource()->GetContentType())) { // Not playing video, we don't care about the layers backend type. return; } // Extract the layer manager backend type so that platform decoders // can determine whether it's worthwhile using hardware accelerated // video decoding. MediaDecoderOwner* owner = mDecoder->GetOwner(); if (!owner) { NS_WARNING("MP4Reader without a decoder owner, can't get HWAccel"); return; } dom::HTMLMediaElement* element = owner->GetMediaElement(); NS_ENSURE_TRUE_VOID(element); nsRefPtr layerManager = nsContentUtils::LayerManagerForDocument(element->OwnerDoc()); NS_ENSURE_TRUE_VOID(layerManager); mLayersBackendType = layerManager->GetBackendType(); } nsresult MP4Reader::Init(MediaDecoderReader* aCloneDonor) { MOZ_ASSERT(NS_IsMainThread(), "Must be on main thread."); PlatformDecoderModule::Init(); mMP4Stream = new MP4Stream(mDecoder->GetResource()); mDemuxer = new MP4Demuxer(mMP4Stream); InitLayersBackendType(); return NS_OK; } nsresult MP4Reader::ReadMetadata(MediaInfo* aInfo, MetadataTags** aTags) { bool ok = mDemuxer->Init(); NS_ENSURE_TRUE(ok, NS_ERROR_FAILURE); const AudioDecoderConfig& audio = mDemuxer->AudioConfig(); mInfo.mAudio.mHasAudio = mHasAudio = mDemuxer->HasAudio() && audio.IsValidConfig(); // If we have audio, we *only* allow AAC to be decoded. if (mHasAudio && audio.codec() != kCodecAAC) { return NS_ERROR_FAILURE; } const VideoDecoderConfig& video = mDemuxer->VideoConfig(); mInfo.mVideo.mHasVideo = mHasVideo = mDemuxer->HasVideo() && video.IsValidConfig(); // If we have video, we *only* allow H.264 to be decoded. if (mHasVideo && video.codec() != kCodecH264) { return NS_ERROR_FAILURE; } mPlatform = PlatformDecoderModule::Create(); NS_ENSURE_TRUE(mPlatform, NS_ERROR_FAILURE); if (mHasAudio) { mInfo.mAudio.mRate = audio.samples_per_second(); mInfo.mAudio.mChannels = ChannelLayoutToChannelCount(audio.channel_layout()); mAudioDecoder = mPlatform->CreateAACDecoder(audio); NS_ENSURE_TRUE(mAudioDecoder != nullptr, NS_ERROR_FAILURE); nsresult rv = mAudioDecoder->Init(); NS_ENSURE_SUCCESS(rv, rv); } mInfo.mVideo.mHasVideo = mHasVideo = mDemuxer->HasVideo(); if (mHasVideo) { IntSize sz = video.natural_size(); mInfo.mVideo.mDisplay = nsIntSize(sz.width(), sz.height()); mVideoDecoder = mPlatform->CreateH264Decoder(video, mLayersBackendType, mDecoder->GetImageContainer()); NS_ENSURE_TRUE(mVideoDecoder != nullptr, NS_ERROR_FAILURE); nsresult rv = mVideoDecoder->Init(); NS_ENSURE_SUCCESS(rv, rv); } // Get the duration, and report it to the decoder if we have it. Microseconds duration = mDemuxer->Duration(); if (duration != -1) { ReentrantMonitorAutoEnter mon(mDecoder->GetReentrantMonitor()); mDecoder->SetMediaDuration(duration); } // We can seek if we get a duration *and* the reader reports that it's // seekable. if (!mDemuxer->CanSeek()) { mDecoder->SetMediaSeekable(false); } *aInfo = mInfo; *aTags = nullptr; return NS_OK; } bool MP4Reader::HasAudio() { return mHasAudio; } bool MP4Reader::HasVideo() { return mHasVideo; } MP4SampleQueue& MP4Reader::SampleQueue(TrackType aTrack) { MOZ_ASSERT(aTrack == kAudio || aTrack == kVideo); return (aTrack == kAudio) ? mCompressedAudioQueue : mCompressedVideoQueue; } MediaDataDecoder* MP4Reader::Decoder(mp4_demuxer::TrackType aTrack) { MOZ_ASSERT(aTrack == kAudio || aTrack == kVideo); return (aTrack == kAudio) ? mAudioDecoder : mVideoDecoder; } MP4Sample* MP4Reader::PopSample(TrackType aTrack) { // Unfortunately the demuxer outputs in the order samples appear in the // media, not on a per stream basis. We cache the samples we get from // streams other than the one we want. MP4SampleQueue& sampleQueue = SampleQueue(aTrack); while (sampleQueue.empty()) { nsAutoPtr sample; bool eos = false; bool ok = mDemuxer->Demux(&sample, &eos); if (!ok || eos) { MOZ_ASSERT(!sample); return nullptr; } MOZ_ASSERT(sample); MP4Sample* s = sample.forget(); SampleQueue(s->type).push_back(s); } MOZ_ASSERT(!sampleQueue.empty()); MP4Sample* sample = sampleQueue.front(); sampleQueue.pop_front(); return sample; } bool MP4Reader::Decode(TrackType aTrack, nsAutoPtr& aOutData) { MP4SampleQueue& sampleQueue = SampleQueue(aTrack); MediaDataDecoder* decoder = Decoder(aTrack); MOZ_ASSERT(decoder); // Loop until we hit a return condition; we produce samples, or hit an error. while (true) { DecoderStatus status = decoder->Output(aOutData); if (status == DECODE_STATUS_OK) { MOZ_ASSERT(aOutData); return true; } // |aOutData| should only be non-null in success case. MOZ_ASSERT(!aOutData); if (status == DECODE_STATUS_ERROR) { return false; } if (status == DECODE_STATUS_NEED_MORE_INPUT) { // We need to push more data from the demuxer into the decoder. // Now loop back and try to extract output again. nsAutoPtr compressed; do { compressed = PopSample(aTrack); if (!compressed) { // EOS, or error. Let the state machine know there are no more // frames coming. return false; } status = decoder->Input(compressed); } while (status == DECODE_STATUS_OK); if (status == DECODE_STATUS_NOT_ACCEPTING) { // Decoder should now be able to produce an output. if (compressed != nullptr) { // Decoder didn't consume data, attempt to decode the same // sample next time. SampleQueue(aTrack).push_front(compressed.forget()); } continue; } LOG("MP4Reader decode failure. track=%d status=%d\n", aTrack, status); return false; } else { LOG("MP4Reader unexpected error. track=%d status=%d\n", aTrack, status); return false; } } } bool MP4Reader::DecodeAudioData() { MOZ_ASSERT(mHasAudio && mPlatform && mAudioDecoder); nsAutoPtr audio; bool ok = Decode(kAudio, audio); if (ok && audio && audio->mType == MediaData::AUDIO_SAMPLES) { #ifdef LOG_SAMPLE_DECODE LOG("DecodeAudioData time=%lld dur=%lld", audio->mTime, audio->mDuration); #endif mAudioQueue.Push(static_cast(audio.forget())); } return ok; } bool MP4Reader::SkipVideoDemuxToNextKeyFrame(int64_t aTimeThreshold, uint32_t& parsed) { MOZ_ASSERT(mVideoDecoder); // Purge the current decoder's state. mVideoDecoder->Flush(); // Loop until we reach the next keyframe after the threshold. while (true) { nsAutoPtr compressed(PopSample(kVideo)); if (!compressed) { // EOS, or error. Let the state machine know. return false; } parsed++; if (!compressed->is_sync_point || compressed->composition_timestamp < aTimeThreshold) { continue; } mCompressedVideoQueue.push_front(compressed.forget()); break; } return true; } bool MP4Reader::DecodeVideoFrame(bool &aKeyframeSkip, int64_t aTimeThreshold) { // Record number of frames decoded and parsed. Automatically update the // stats counters using the AutoNotifyDecoded stack-based class. uint32_t parsed = 0, decoded = 0; AbstractMediaDecoder::AutoNotifyDecoded autoNotify(mDecoder, parsed, decoded); MOZ_ASSERT(mHasVideo && mPlatform && mVideoDecoder); if (aKeyframeSkip) { bool ok = SkipVideoDemuxToNextKeyFrame(aTimeThreshold, parsed); if (!ok) { NS_WARNING("Failed to skip demux up to next keyframe"); return false; } aKeyframeSkip = false; } nsAutoPtr data; bool ok = Decode(kVideo, data); MOZ_ASSERT(!data || data->mType == MediaData::VIDEO_FRAME); if (ok && data) { parsed++; if (data->mTime < aTimeThreshold) { // Skip frame, it's too late to be displayed. return true; } decoded++; VideoData* video = static_cast(data.forget()); #ifdef LOG_SAMPLE_DECODE LOG("DecodeVideoData time=%lld dur=%lld", video->mTime, video->mDuration); #endif mVideoQueue.Push(video); } return ok; } nsresult MP4Reader::Seek(int64_t aTime, int64_t aStartTime, int64_t aEndTime, int64_t aCurrentTime) { if (!mDemuxer->CanSeek()) { return NS_ERROR_FAILURE; } return NS_ERROR_NOT_IMPLEMENTED; } void MP4Reader::OnDecodeThreadStart() { MOZ_ASSERT(!NS_IsMainThread(), "Must not be on main thread."); MOZ_ASSERT(mDecoder->OnDecodeThread(), "Should be on decode thread."); if (mPlatform) { mPlatform->OnDecodeThreadStart(); } } void MP4Reader::OnDecodeThreadFinish() { MOZ_ASSERT(!NS_IsMainThread(), "Must not be on main thread."); MOZ_ASSERT(mDecoder->OnDecodeThread(), "Should be on decode thread."); if (mPlatform) { mPlatform->OnDecodeThreadFinish(); } } } // namespace mozilla