summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/mpeg/source/server/Video_Repository.idl
blob: e7e93b2b7df7f42e39d1b93b4db74dd0dd6f128c (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
32
// ============================================================================
// $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 audio_filename_;
    string video_filename_;                        
    string description_;
    //    string movie_format_;
    //    unsigned long filesize_;
    //    unsigned long duration_;
    //    unsigned long framerate_;
    //    unsigned long framesize_;    
  };

  typedef sequence<Movie> Movie_Info;
};