File: mpgtest.i

package info (click to toggle)
yorick-z 1.2.0%2Bcvs20080115-1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 256 kB
  • ctags: 246
  • sloc: ansic: 2,004; sh: 445; makefile: 83
file content (27 lines) | stat: -rw-r--r-- 631 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
23
24
25
26
27
/*
 * $Id: mpgtest.i,v 1.1.1.1 2005/09/18 22:07:10 dhmunro Exp $
 * test yorick mpeg encoder
 */
/* Copyright (c) 2005, The Regents of the University of California.
 * All rights reserved.
 * This file is part of yorick (http://yorick.sourceforge.net).
 * Read the accompanying LICENSE file for details.
 */
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);
}