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

« back to all changes in this revision

Viewing changes to mpeglib/lib/yuv/yuvPlugin.h

  • 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
/*
 
2
  raw yuv stream player
 
3
  Copyright (C) 2000  Martin Vogt
 
4
 
 
5
  This program is free software; you can redistribute it and/or modify
 
6
  it under the terms of the GNU Library General Public License as published by
 
7
  the Free Software Foundation.
 
8
 
 
9
  For more information look at the file COPYRIGHT in this package
 
10
 
 
11
 */
 
12
 
 
13
 
 
14
 
 
15
 
 
16
 
 
17
#ifndef __YUVPLUGIN_H
 
18
#define __YUVPLUGIN_H
 
19
 
 
20
#include "../decoder/decoderPlugin.h"
 
21
 
 
22
class YUVPlugin : public DecoderPlugin {
 
23
  
 
24
  int lCalcLength;
 
25
  int nWidth;
 
26
  int nHeight;
 
27
  int imageType;
 
28
  float picPerSec;
 
29
 
 
30
 public:
 
31
  YUVPlugin();
 
32
  ~YUVPlugin();
 
33
 
 
34
  void decoder_loop();
 
35
  void config(const char* key,const char* value,void* user_data);
 
36
 
 
37
  
 
38
 private:
 
39
  void init();
 
40
 
 
41
  int getSongLength();
 
42
 
 
43
 
 
44
};
 
45
 
 
46
#endif