Home
last modified time | relevance | path

Searched refs:movie (Results 1 – 25 of 103) sorted by relevance

12345

/third_party/ffmpeg/libavfilter/
Dsrc_movie.c207 MovieContext *movie = ctx->priv; in movie_common_init() local
214 if (!movie->file_name) { in movie_common_init()
219 movie->seek_point = movie->seek_point_d * 1000000 + 0.5; in movie_common_init()
221 stream_specs = movie->stream_specs; in movie_common_init()
225 movie->stream_index); in movie_common_init()
232 if (movie->loop_count != 1 && nb_streams != 1) { in movie_common_init()
239 iformat = movie->format_name ? av_find_input_format(movie->format_name) : NULL; in movie_common_init()
241 movie->format_ctx = NULL; in movie_common_init()
242 if ((ret = avformat_open_input(&movie->format_ctx, movie->file_name, iformat, NULL)) < 0) { in movie_common_init()
244 "Failed to avformat_open_input '%s'\n", movie->file_name); in movie_common_init()
[all …]
/third_party/flatbuffers/tests/
DJavaScriptUnionVectorTest.js16 function testMovieBuf(movie) { argument
17 assert.strictEqual(movie.charactersTypeLength(), charTypes.length);
18 assert.strictEqual(movie.charactersLength(), movie.charactersTypeLength());
21 assert.strictEqual(movie.charactersType(i), charTypes[i]);
24 var bookReader7 = movie.characters(0, new BookReader());
27 var attacker = movie.characters(1, new Attacker());
30 var bookReader2 = movie.characters(2, new BookReader());
33 var other = movie.characters(3, '');
37 function testMovieUnpack(movie) { argument
38 assert.strictEqual(movie.charactersType.length, charTypes.length);
[all …]
DphpUnionVectorTest.php80 $movie = Movie::getRootAsMovie($buf);
82 $assert->strictEqual($movie->getCharactersTypeLength(), count($charTypes));
83 $assert->strictEqual($movie->getCharactersLength(), $movie->getCharactersTypeLength());
86 $assert->strictEqual($movie->getCharactersType($i), $charTypes[$i]);
89 $bookReader7 = $movie->getCharacters(0, new BookReader());
92 $attacker = $movie->getCharacters(1, new Attacker());
95 $bookReader2 = $movie->getCharacters(2, new BookReader());
DKotlinTest.kt453 val movie = Movie.getRootAsMovie(fbb.dataBuffer()) in TestVectorOfUnions() constant
455 assert(movie.charactersTypeLength == characterTypeVector.size) in TestVectorOfUnions()
456 assert(movie.charactersLength == characterVector.size) in TestVectorOfUnions()
458 assert(movie.charactersType(0) == characterTypeVector[0]) in TestVectorOfUnions()
460 assert((movie.characters(Attacker(), 0) as Attacker).swordAttackDamage == swordAttackDamage) in TestVectorOfUnions()
DJavaTest.java515 final Movie movie = Movie.getRootAsMovie(fbb.dataBuffer()); in TestVectorOfUnions() local
516 ByteVector charactersTypeByteVector = movie.charactersTypeVector(); in TestVectorOfUnions()
517 UnionVector charactersVector = movie.charactersVector(); in TestVectorOfUnions()
519 TestEq(movie.charactersTypeLength(), characterTypeVector.length); in TestVectorOfUnions()
521 TestEq(movie.charactersLength(), characterVector.length); in TestVectorOfUnions()
524 TestEq(movie.charactersType(0), characterTypeVector[0]); in TestVectorOfUnions()
527 … TestEq(((Attacker)movie.characters(new Attacker(), 0)).swordAttackDamage(), swordAttackDamage); in TestVectorOfUnions()
/third_party/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/
DFlatBuffersUnionTests.swift116 var movie = Movie.getRootAsMovie(bb: fb.buffer) in testUnionVector() variable
117 XCTAssertEqual(movie.charactersTypeCount, Int32(characterType.count)) in testUnionVector()
118 XCTAssertEqual(movie.charactersCount, Int32(characters.count)) in testUnionVector()
120 for i in 0..<movie.charactersTypeCount { in testUnionVector()
121 XCTAssertEqual(movie.charactersType(at: i), characterType[Int(i)]) in testUnionVector()
124 XCTAssertEqual(movie.characters(at: 0, type: BookReader_Mutable.self)?.booksRead, 7) in testUnionVector()
125 XCTAssertEqual(movie.characters(at: 1, type: Attacker.self)?.swordAttackDamage, swordDmg) in testUnionVector()
126 XCTAssertEqual(movie.characters(at: 2, type: BookReader_Mutable.self)?.booksRead, 2) in testUnionVector()
128 var objc: MovieT? = movie.unpack() in testUnionVector()
129 XCTAssertEqual(movie.charactersTypeCount, Int32(objc?.characters.count ?? 0)) in testUnionVector()
[all …]
/third_party/mindspore/tests/ut/data/mindrecord/testAclImdbData/pos/
D10003_8.txt1movie, she is such a fantastic, under-rated actress. There were some moments that could have been …
D10008_7.txt1movie, the confused feelings that Robin Williams so brilliantly portrayed resurfaced in my mind.<b…
D10005_7.txt1 …how much you enjoy the film. However, the core plot is very engaging. The movie doesn't rush onto …
D10001_10.txt1 …ok for the legs scene and the two big diggers fighting (one bleeds). This movie gets better each t…
D10004_8.txt1 …is goal.<br /><br />I must say that I was highly entertained, though this movie fails to teach, gu…
/third_party/python/Lib/test/
Dmailcap.txt14 application/x-movie; movieplayer %s; compose=moviemaker %s; \
16 x11-bitmap="/usr/lib/Zmail/bitmaps/movie.xbm"
/third_party/ffmpeg/tests/ref/fate/
Dsub-stl24 Dialogue: 0,0:01:22.10,0:01:26.08,Default,,0,0,0,,and so we worked\N in parallel \Nin the movie pro…
25 …,0:01:30.17,Default,,0,0,0,,The largest part of \N the soundtrack \Nwas done without seeing a movie
/third_party/flatbuffers/tests/FlatBuffers.Test/
DFlatBuffersExampleTests.cs476 var movie = Movie.GetRootAsMovie(fbb.DataBuffer); in TestUnionVector()
477 Assert.AreEqual(Character.Rapunzel, movie.MainCharacterType); in TestUnionVector()
478 Assert.AreEqual(40, movie.MainCharacter<Rapunzel>().Value.HairLength); in TestUnionVector()
480 Assert.AreEqual(3, movie.CharactersLength); in TestUnionVector()
481 Assert.AreEqual(Character.MuLan, movie.CharactersType(0)); in TestUnionVector()
482 Assert.AreEqual(10, movie.Characters<Attacker>(0).Value.SwordAttackDamage); in TestUnionVector()
483 Assert.AreEqual(Character.Belle, movie.CharactersType(1)); in TestUnionVector()
484 Assert.AreEqual(20, movie.Characters<BookReader>(1).Value.BooksRead); in TestUnionVector()
485 Assert.AreEqual(Character.Other, movie.CharactersType(2)); in TestUnionVector()
486 Assert.AreEqual("Chip", movie.CharactersAsString(2)); in TestUnionVector()
[all …]
/third_party/python/Lib/distutils/tests/
DSetup.sample29 movie src/movie.c $(SDL) $(SMPEG) $(DEBUG)
/third_party/ffmpeg/tests/fate/
Dsubtitles.mak5 fate-sub-cc: CMD = fmtstdout ass -f lavfi -i "movie=$(TARGET_SAMPLES)/sub/Closedcaption_rollup.m2v[…
8 fate-sub-cc-realtime: CMD = fmtstdout ass -real_time 1 -f lavfi -i "movie=$(TARGET_SAMPLES)/sub/Clo…
11 fate-sub-cc-scte20: CMD = fmtstdout ass -f lavfi -i "movie=$(TARGET_SAMPLES)/sub/scte20.ts[out0+sub…
Dmov.mak19 fate-mov-stream-shorter-than-movie \
51 # Fragmented encryption with senc boxes in movie fragments.
103 fate-mov-stream-shorter-than-movie: CMD = framemd5 -flags +bitexact -i $(TARGET_SAMPLES)/mov/mov_st…
Dfilter-video.mak788 …t: CMD = run $(FILTER_METADATA_COMMAND) "sws_flags=+accurate_rnd+bitexact;movie='$(SRC)',select=gt…
794 …t: CMD = run $(FILTER_METADATA_COMMAND) "sws_flags=+accurate_rnd+bitexact;movie='$(SRC)',scdet=s=1"
800 …t: CMD = run $(FILTER_METADATA_COMMAND) "sws_flags=+accurate_rnd+bitexact;movie='$(SRC)',cropdetec…
825 fate-filter-metadata-readvitc-def: CMD = run $(FILTER_METADATA_COMMAND) "movie='$(SRC)',readvitc"
829 fate-filter-metadata-readvitc-thr: CMD = run $(FILTER_METADATA_COMMAND) "movie='$(SRC)',readvitc=th…
/third_party/gstreamer/gstreamer/docs/random/wtay/
DDVDplayer35 - nav info can also happen while playing the movie. This can highlite
/third_party/glib/gio/
Dgosxcontenttype.m384 return g_strdup ("public.movie");
443 if (g_str_has_suffix (type, ".movie"))
/third_party/ffmpeg/doc/
Dfaq.texi202 @section How do I encode movie to single pictures?
207 ffmpeg -i movie.mpg movie%d.jpg
210 The @file{movie.mpg} used as input will be converted to
223 ffmpeg -i movie.mpg -f image2 -c:v mjpeg menu%d.jpg
/third_party/node/deps/npm/node_modules/mississippi/
Dreadme.md351 var copySource = fs.createReadStream('./movie.mp4')
352 var copyDest = fs.createWriteStream('./movie-copy.mp4')
/third_party/node/deps/npm/node_modules/mime-db/
DHISTORY.md266 - `application/vnd.adobe.flash-movie`
/third_party/node/deps/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/
Dmedia.gyp848 'tools/player_wtl/movie.cc',
849 'tools/player_wtl/movie.h',
/third_party/node/tools/gyp/tools/emacs/testdata/
Dmedia.gyp848 'tools/player_wtl/movie.cc',
849 'tools/player_wtl/movie.h',

12345