~ubuntu-branches/ubuntu/feisty/avidemux/feisty

« back to all changes in this revision

Viewing changes to avidemux/ADM_mplex/streamType.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef STREAM_TYPE_H
 
2
#define STREAM_TYPE_H
 
3
enum StreamKind
 
4
  {
 
5
      MPEG_AUDIO=1,
 
6
      AC3_AUDIO,
 
7
      LPCM_AUDIO,
 
8
      DTS_AUDIO,
 
9
      MPEG_VIDEO
 
10
#ifdef ZALPHA
 
11
        ,
 
12
      Z_ALPHA
 
13
#endif
 
14
  };
 
15
 
 
16
typedef struct mplexStreamDescriptor
 
17
{
 
18
  int channel;
 
19
  int frequency;
 
20
  StreamKind kind;
 
21
}mplexStreamDescriptor;
 
22
#endif