~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to mpeglib_artsplug/decoderBaseObject.idl

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "kmedia2.idl"
 
2
#include "artsflow.idl"
 
3
 
 
4
/* the interfaces below are not kept binary compatible */
 
5
 
 
6
interface DecoderBaseObject :
 
7
    Arts::PlayObject,
 
8
    Arts::SynthModule,
 
9
    Arts::PitchablePlayObject
 
10
{
 
11
  /**
 
12
   * blocking flag - defaults to false - when set to true, mpeglib will not
 
13
   * try to minimize latencies by generating answers (i.e. empty blocks)
 
14
   * when the thread producing the data wasn't ready
 
15
   */
 
16
  attribute boolean blocking;
 
17
};
 
18
 
 
19
 
 
20
interface MP3PlayObject : DecoderBaseObject
 
21
{
 
22
  out audio stream left,right;
 
23
};
 
24
 
 
25
 
 
26
interface WAVPlayObject : DecoderBaseObject
 
27
{
 
28
  out audio stream left,right;
 
29
};
 
30
 
 
31
 
 
32
interface MPGPlayObject : DecoderBaseObject
 
33
{
 
34
  out audio stream left,right;
 
35
};
 
36
 
 
37
 
 
38
interface OGGPlayObject : DecoderBaseObject
 
39
{
 
40
  out audio stream left,right;
 
41
};
 
42
 
 
43
interface CDDAPlayObject : DecoderBaseObject
 
44
{
 
45
  out audio stream left,right;
 
46
};
 
47
 
 
48
interface VCDPlayObject : DecoderBaseObject
 
49
{
 
50
  out audio stream left,right;
 
51
};
 
52
 
 
53
interface NULLPlayObject : Arts::PlayObject , Arts::SynthModule
 
54
{
 
55
  out audio stream left,right;
 
56
};