summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/Video_Repository.idl
blob: ce42c0899592464c1a88a86438231de918d829cc (plain)
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
28
29
30
31
// ============================================================================
// $Id$
//
// = FILENAME 
//    Video_Repository.idl
// 
// = DESCRIPTION  
//   Data Structures used by the Video_Repository to describe movies in
//   the Video Repository.
// 
// = AUTHORS
//    Seth Widoff <sbw1@cs.wustl.edu>
//
// ============================================================================

module TAO_VR
{
  struct Movie
  {
    string name_;
    string filename_;
    string description_;
    //    string movie_format_;
    //    unsigned long filesize_;
    //    unsigned long duration_;
    //    unsigned long framerate_;
    //    unsigned long framesize_;    
  };

  typedef sequence<Movie> Movie_Info;
};