File: mpgtest.i

package info (click to toggle)
yorick-mpeg 0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 504 kB
  • sloc: ansic: 6,219; makefile: 113
file content (22 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * mpgtest.i -- $Id: mpgtest.i,v 1.1.1.1 2007/10/27 22:18:21 dhmunro Exp $
 * test yorick mpeg encoder
 */
require, "mpeg.i";

require, "movie.i";
if (is_void(_orig_movie)) _orig_movie = movie;
require, "demo2.i";

func mpgtest(void)
{
  _mpgtest_name = "test.mpg";
  movie = _mpgtest_movie;
  demo2, 3;
}

func _mpgtest_movie(__f, __a, __b, __c)
{
  movie = _orig_movie;
  return mpeg_movie(_mpgtest_name, __f, __a, __b, __c);
}