HomeSort by relevance Sort by last modified time
    Searched full:movie (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /frameworks/base/core/jni/android/graphics/
Movie.cpp 33 static SkMovie* J2Movie(JNIEnv* env, jobject movie) {
35 SkASSERT(movie);
36 SkASSERT(env->IsInstanceOf(movie, gMovie_class));
37 SkMovie* m = (SkMovie*)env->GetIntField(movie, gMovie_nativeInstanceID);
44 static int movie_width(JNIEnv* env, jobject movie) {
45 NPE_CHECK_RETURN_ZERO(env, movie);
46 return J2Movie(env, movie)->width();
49 static int movie_height(JNIEnv* env, jobject movie) {
50 NPE_CHECK_RETURN_ZERO(env, movie);
51 return J2Movie(env, movie)->height()
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Movie.java 22 public class Movie {
25 private Movie(int nativeMovie) {
27 throw new RuntimeException("native movie creation failed");
45 public static native Movie decodeStream(InputStream is);
46 public static native Movie decodeByteArray(byte[] data, int offset,
49 public static Movie decodeFile(String pathName) {
60 private static Movie decodeTempStream(InputStream is) {
61 Movie moov = null;
  /external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/
test.html 4 <title>Netscape Core Animation Movie Plug-In</title>
10 type="test/x-netscape-core-animation-movie-plugin"></embed>
13 type="test/x-netscape-core-animation-movie-plugin"></embed>
Info.plist 27 <key>test/x-netscape-core-animation-movie-plugin</key>
30 <string>Netscape Core Animation Movie Plug-in</string>
34 <string>Netscape Core Animation Movie Plug-in</string>
main.m 72 QTMovie *movie;
176 [obj->movie stop];
238 if (!obj->movie)
241 if ([obj->movie rate] == 0)
242 [obj->movie play];
244 [obj->movie stop];
282 // Hide the controller layer if the movie is playing.
283 if ([obj->movie rate])
304 [obj->movie stepForward];
306 [obj->movie stepBackward]
    [all...]
  /external/skia/include/images/
SkMovie.h 27 /** Try to create a movie from the stream. If the stream format is not
31 /** Try to create a movie from the specified file path. If the file is not
32 found, or the format is not supported, return NULL. If a movie is
33 returned, the stream may be retained by the movie (via ref()) until
34 the movie is finished with it (by calling unref()).
37 /** Try to create a movie from the specified memory.
38 If the format is not supported, return NULL. If a movie is returned,
50 from the movie. Returns true if this time code generated a different
  /external/skia/src/images/
SkImageDecoder_Factory.cpp 49 SkMovie* movie = curr->factory()(stream); local
50 if (movie) {
51 return movie;
54 // movie, who may have already started reading from it
SkMovie.cpp 87 SkMovie* movie = NULL; local
91 movie = SkMovie::DecodeStream(&stream);
95 SkDebugf("Movie file not found <%s>\n", path);
99 return movie;
  /cts/tests/tests/graphics/src/android/graphics/cts/
MovieTest.java 29 import android.graphics.Movie;
39 @TestTargetClass(Movie.class)
41 private Movie mMovie;
42 private final int MOVIE = com.android.cts.stub.R.drawable.animated;
51 mMovie = getActivity().getResources().getMovie(MOVIE);
96 mMovie = Movie.decodeFile(imagefile.getPath());
100 mMovie = Movie.decodeFile("/no file path");
109 source = getActivity().getResources().openRawResource(MOVIE);
150 InputStream is = getActivity().getResources().openRawResource(MOVIE);
152 mMovie = Movie.decodeByteArray(bytes, 0, bytes.length)
    [all...]
  /external/webkit/WebCore/manual-tests/
audio-volume.html 22 <p>TEST: Audio volume should be 0.05 when the movie begins playing.</p>
23 <input type="button" value="Load movie" onclick="load()">
show-hide-object.html 16 The Flash movie hides when "Hide Flash" is clicked, and shows again when "Show Flash" is clicked.
20 The Flash movie hides when "Hide Flash" is clicked, but does not show again when "Show Flash" is clicked. Clicking on "Hide Flash" and then "Show Flash" again will show the movie.
53 <param name="movie" value="resources/spinbox.swf">
contenteditable-link.html 4 <TITLE> Webkit bugzilla repro movie: #7156 </TITLE>
16 <P>Repro movie for bug <a href="http://bugs.webkit.org/show_bug.cgi?id=7156">#7156</a></P>
  /external/skia/src/ports/
SkImageDecoder_empty.cpp 81 SkMovie* movie = gMovieProcs[i](stream); local
82 if (NULL != movie) {
83 return movie;
  /cts/tests/res/anim/
movie_test.xml 19 <movie src="lineartest.xml"/>
  /external/webkit/WebCore/WebCore.vcproj/
QTMovieWin.rc 33 VALUE "FileDescription", "WebKit QuickTime Movie Dynamic Link Library"
  /external/opencore/fileformats/mp4/composer/include/
movieatom.h 42 // movie fragment
59 // Get the duration of the movie
100 // Sets the timescale of the mp4 movie - gets reflected in the movieHeader
104 // Gets the timescale of the mp4 movie
345 // Movie Fragment : add movie extend atom usage APIs
377 // Movie Fragment : Atoms needed in movie fragment mode
mpeg4file.h 41 // movie fragment
271 // movie fragment : set duration of MOOF
340 // In movie fragment mode these parameters hold
346 // This media data atom holds MDAT for movie fragments only
348 // Movie Fragment random access atom in case of movie fragments
351 // Movie Fragment mode parameters
359 uint32 _sequenceNumber; // keep track of number of movie fragments added
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 190 int WKQTMovieGetType(QTMovie* movie);
192 BOOL WKQTMovieHasClosedCaptions(QTMovie* movie);
193 void WKQTMovieSetShowClosedCaptions(QTMovie* movie, BOOL showClosedCaptions);
196 int WKQTMovieDataRate(QTMovie* movie);
197 float WKQTMovieMaxTimeLoaded(QTMovie* movie);
198 float WKQTMovieMaxTimeSeekable(QTMovie* movie);
  /external/opencore/fileformats/mp4/composer/src/
movieatom.cpp 59 //Movie Fragment : Enable movie fragment mode and create movie extends atom
109 //Movie Fragment : delete mvex atom
138 // add trex atom in movie fragment mode
155 // add trex atom in movie fragment mode
254 // in movie fragment mode add size of mvex
328 // Render the movie header
361 // render MVEX atom in movie fragment mode
461 // Add sample to movie header so can update its _duratio
    [all...]
trackatom.cpp 128 // which is supposed to be in movie time scale
141 //Edit durations are sposed to be movie time scale
174 // which is supposed to be in movie time scale
187 //Edit durations are sposed to be movie time scale
219 // which is supposed to be in movie time scale
232 //Edit durations are sposed to be movie time scale
266 // which is supposed to be in movie time scale
279 //Edit durations are sposed to be movie time scale
468 // in movie fragment mode set the actual duration of
movieextendsatom.cpp 52 // returns pointer to movie extension header atom
60 // set movie fragment duration
159 // Render the movie extend header atom
  /external/webkit/WebCore/platform/gtk/
LocalizedStringsGtk.cpp 387 return String::fromUTF8(_("movie time"));
430 return String::fromUTF8(_("movie time scrubber"));
432 return String::fromUTF8(_("movie time scrubber thumb"));
434 return String::fromUTF8(_("seek movie back 30 seconds"));
436 return String::fromUTF8(_("return streaming movie to real time"));
438 return String::fromUTF8(_("current movie time in seconds"));
440 return String::fromUTF8(_("number of seconds of movie remaining"));
442 return String::fromUTF8(_("current movie status"));
448 return String::fromUTF8(_("Play movie in fullscreen mode"));
  /external/opencore/nodes/common/include/
pvmf_mp4_progdownload_support_extension.h 110 * Returns the length of the entire presentation in the units of the movie timescale.
112 * @return - movie duration in units of the movie timescale.
119 * Returns the movie timescale.
121 * @return - movie timescale (i.e., ticks per second).
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapDecode.java 48 private Movie mMovie;
105 mMovie = Movie.decodeStream(is);
108 mMovie = Movie.decodeByteArray(array, 0, array.length);
  /external/webkit/WebCore/platform/mac/
WebCoreSystemInterface.mm 61 int (*wkQTMovieGetType)(QTMovie* movie);
62 BOOL (*wkQTMovieHasClosedCaptions)(QTMovie* movie);
63 void (*wkQTMovieSetShowClosedCaptions)(QTMovie* movie, BOOL showClosedCaptions);

Completed in 263 milliseconds

1 2 3 4 5 6