~ubuntu-branches/ubuntu/trusty/mtasc/trusty-proposed

« back to all changes in this revision

Viewing changes to ocaml/mtasc/std/Video.as

  • Committer: Bazaar Package Importer
  • Author(s): Paul Wise
  • Date: 2006-03-25 17:15:45 UTC
  • Revision ID: james.westby@ubuntu.com-20060325171545-zjh6rxeqehxiv4v2
Tags: upstream-1.12
ImportĀ upstreamĀ versionĀ 1.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
intrinsic class Video
 
2
{
 
3
        var deblocking : Number;
 
4
        var height : Number;
 
5
        var smoothing : Boolean;
 
6
        var width : Number;
 
7
 
 
8
        function attachVideo( source : Object ) : Void;
 
9
        function clear() : Void;
 
10
}
 
11
 
 
12