| /* |
| * Copyright (C) 2012 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| |
| #if ENABLE(VIDEO_TRACK) |
| |
| #include "InbandTextTrack.h" |
| |
| #include "Document.h" |
| #include "Event.h" |
| #include "ExceptionCodePlaceholder.h" |
| #include "InbandTextTrackPrivate.h" |
| #include "Logging.h" |
| #include "MediaPlayer.h" |
| #include "TextTrackCueGeneric.h" |
| #include "TextTrackCueList.h" |
| #include <math.h> |
| #include <wtf/UnusedParam.h> |
| |
| namespace WebCore { |
| |
| PassRefPtr<InbandTextTrack> InbandTextTrack::create(ScriptExecutionContext* context, TextTrackClient* client, PassRefPtr<InbandTextTrackPrivate> playerPrivate) |
| { |
| return adoptRef(new InbandTextTrack(context, client, playerPrivate)); |
| } |
| |
| InbandTextTrack::InbandTextTrack(ScriptExecutionContext* context, TextTrackClient* client, PassRefPtr<InbandTextTrackPrivate> tracksPrivate) |
| : TextTrack(context, client, emptyString(), tracksPrivate->label(), tracksPrivate->language(), InBand) |
| , m_private(tracksPrivate) |
| { |
| m_private->setClient(this); |
| |
| switch (m_private->kind()) { |
| case InbandTextTrackPrivate::Subtitles: |
| setKind(TextTrack::subtitlesKeyword()); |
| break; |
| case InbandTextTrackPrivate::Captions: |
| setKind(TextTrack::captionsKeyword()); |
| break; |
| case InbandTextTrackPrivate::Descriptions: |
| setKind(TextTrack::descriptionsKeyword()); |
| break; |
| case InbandTextTrackPrivate::Chapters: |
| setKind(TextTrack::chaptersKeyword()); |
| break; |
| case InbandTextTrackPrivate::Metadata: |
| setKind(TextTrack::metadataKeyword()); |
| break; |
| case InbandTextTrackPrivate::None: |
| default: |
| ASSERT_NOT_REACHED(); |
| break; |
| } |
| } |
| |
| InbandTextTrack::~InbandTextTrack() |
| { |
| m_private->setClient(0); |
| } |
| |
| void InbandTextTrack::setMode(const AtomicString& mode) |
| { |
| TextTrack::setMode(mode); |
| |
| if (mode == TextTrack::disabledKeyword()) |
| m_private->setMode(InbandTextTrackPrivate::Disabled); |
| else if (mode == TextTrack::hiddenKeyword()) |
| m_private->setMode(InbandTextTrackPrivate::Hidden); |
| else if (mode == TextTrack::showingKeyword()) |
| m_private->setMode(InbandTextTrackPrivate::Showing); |
| else |
| ASSERT_NOT_REACHED(); |
| } |
| |
| bool InbandTextTrack::isClosedCaptions() const |
| { |
| if (!m_private) |
| return false; |
| |
| return m_private->isClosedCaptions(); |
| } |
| |
| size_t InbandTextTrack::inbandTrackIndex() |
| { |
| ASSERT(m_private); |
| return m_private->textTrackIndex(); |
| } |
| |
| void InbandTextTrack::addGenericCue(InbandTextTrackPrivate* trackPrivate, GenericCueData* cueData) |
| { |
| UNUSED_PARAM(trackPrivate); |
| ASSERT(trackPrivate == m_private); |
| |
| RefPtr<TextTrackCueGeneric> cue = TextTrackCueGeneric::create(scriptExecutionContext(), cueData->startTime(), cueData->endTime(), cueData->content()); |
| |
| cue->setId(cueData->id()); |
| cue->setBaseFontSizeRelativeToVideoHeight(cueData->baseFontSize()); |
| cue->setFontSizeMultiplier(cueData->relativeFontSize()); |
| cue->setFontName(cueData->fontName()); |
| |
| if (cueData->position() > 0) |
| cue->setPosition(lround(cueData->position()), IGNORE_EXCEPTION); |
| if (cueData->line() > 0) |
| cue->setLine(lround(cueData->line()), IGNORE_EXCEPTION); |
| if (cueData->size() > 0) |
| cue->setSize(lround(cueData->size()), IGNORE_EXCEPTION); |
| if (cueData->align() == GenericCueData::Start) |
| cue->setAlign(ASCIILiteral("start"), IGNORE_EXCEPTION); |
| else if (cueData->align() == GenericCueData::Middle) |
| cue->setAlign(ASCIILiteral("middle"), IGNORE_EXCEPTION); |
| else if (cueData->align() == GenericCueData::End) |
| cue->setAlign(ASCIILiteral("end"), IGNORE_EXCEPTION); |
| cue->setSnapToLines(false); |
| |
| if (hasCue(cue.get())) { |
| LOG(Media, "InbandTextTrack::addGenericCue ignoring already added cue: start=%.2f, end=%.2f, content=\"%s\"\n", |
| cueData->startTime(), cueData->endTime(), cueData->content().utf8().data()); |
| return; |
| } |
| |
| addCue(cue); |
| } |
| |
| void InbandTextTrack::addWebVTTCue(InbandTextTrackPrivate* trackPrivate, double start, double end, const String& id, const String& content, const String& settings) |
| { |
| UNUSED_PARAM(trackPrivate); |
| ASSERT(trackPrivate == m_private); |
| |
| RefPtr<TextTrackCue> cue = TextTrackCue::create(scriptExecutionContext(), start, end, content); |
| cue->setId(id); |
| cue->setCueSettings(settings); |
| |
| if (hasCue(cue.get())) |
| return; |
| |
| addCue(cue); |
| } |
| |
| } // namespace WebCore |
| |
| #endif |