OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (C) 2007, 2008, 2009, 2010 Apple, Inc. All rights reserved. | |
3 * | |
4 * Redistribution and use in source and binary forms, with or without | |
5 * modification, are permitted provided that the following conditions | |
6 * are met: | |
7 * 1. Redistributions of source code must retain the above copyright | |
8 * notice, this list of conditions and the following disclaimer. | |
9 * 2. Redistributions in binary form must reproduce the above copyright | |
10 * notice, this list of conditions and the following disclaimer in the | |
11 * documentation and/or other materials provided with the distribution. | |
12 * | |
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | |
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | |
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | |
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | |
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
24 */ | |
25 | |
26 #ifndef QTMovie_h | |
27 #define QTMovie_h | |
28 | |
29 #include "QTTrack.h" | |
30 #include <wtf/Vector.h> | |
31 #include <wtf/unicode/Unicode.h> | |
32 | |
33 #ifdef QTMOVIEWIN_EXPORTS | |
34 #define QTMOVIEWIN_API __declspec(dllexport) | |
35 #else | |
36 #define QTMOVIEWIN_API __declspec(dllimport) | |
37 #endif | |
38 | |
39 class QTMovie; | |
40 class QTMoviePrivate; | |
41 typedef struct MovieType** Movie; | |
42 typedef Vector<RefPtr<QTTrack>> QTTrackArray; | |
43 | |
44 class QTMovieClient { | |
45 public: | |
46 virtual void movieEnded(QTMovie*) = 0; | |
47 virtual void movieLoadStateChanged(QTMovie*) = 0; | |
48 virtual void movieTimeChanged(QTMovie*) = 0; | |
49 }; | |
50 | |
51 enum { | |
52 QTMovieLoadStateError = -1L, | |
53 QTMovieLoadStateLoaded = 2000L, | |
54 QTMovieLoadStatePlayable = 10000L, | |
55 QTMovieLoadStatePlaythroughOK = 20000L, | |
56 QTMovieLoadStateComplete = 100000L | |
57 }; | |
58 | |
59 typedef const struct __CFURL * CFURLRef; | |
60 | |
61 class QTMOVIEWIN_API QTMovie : public RefCounted<QTMovie> { | |
62 public: | |
63 static bool initializeQuickTime(); | |
64 static void taskTimerFired(); | |
65 | |
66 static void disableComponent(uint32_t[5]); | |
67 | |
68 QTMovie(QTMovieClient*); | |
69 ~QTMovie(); | |
70 | |
71 void addClient(QTMovieClient*); | |
72 void removeClient(QTMovieClient*); | |
73 | |
74 void loadPath(const UChar* url, int len, bool preservesPitch); | |
75 void load(const UChar* url, int len, bool preservesPitch); | |
76 void load(CFURLRef, bool preservesPitch); | |
77 | |
78 long loadState() const; | |
79 float maxTimeLoaded() const; | |
80 | |
81 void play(); | |
82 void pause(); | |
83 | |
84 float rate() const; | |
85 void setRate(float); | |
86 | |
87 float duration() const; | |
88 float currentTime() const; | |
89 void setCurrentTime(float) const; | |
90 | |
91 void setVolume(float); | |
92 void setPreservesPitch(bool); | |
93 | |
94 unsigned dataSize() const; | |
95 | |
96 void getNaturalSize(int& width, int& height); | |
97 | |
98 void disableUnsupportedTracks(unsigned& enabledTrackCount, unsigned& totalTr
ackCount); | |
99 | |
100 bool isDisabled() const; | |
101 void setDisabled(bool); | |
102 | |
103 bool hasVideo() const; | |
104 bool hasAudio() const; | |
105 | |
106 QTTrackArray videoTracks() const; | |
107 | |
108 bool hasClosedCaptions() const; | |
109 void setClosedCaptionsVisible(bool); | |
110 | |
111 static unsigned countSupportedTypes(); | |
112 static void getSupportedType(unsigned index, const UChar*& str, unsigned& le
n); | |
113 | |
114 CGAffineTransform getTransform() const; | |
115 void setTransform(CGAffineTransform); | |
116 void resetTransform(); | |
117 | |
118 Movie getMovieHandle() const; | |
119 | |
120 long timeScale() const; | |
121 | |
122 void setPrivateBrowsingMode(bool); | |
123 | |
124 private: | |
125 QTMoviePrivate* m_private; | |
126 friend class QTMoviePrivate; | |
127 }; | |
128 | |
129 #endif | |
OLD | NEW |