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

« back to all changes in this revision

Viewing changes to mpeglib/lib/oggvorbis/oggFrame.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
  here we have an ogg frame. Its still a raw frame.
 
3
  Copyright (C) 2001  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
#ifndef __OGG_FRAME_H
 
16
#define __OGG_FRAME_H
 
17
 
 
18
 
 
19
/**
 
20
   One Ogg Paket as frame. We pass the datapointer and the size
 
21
   to the rawFrame and of course, set the PaktedID to:
 
22
   _FRAME_RAW_OGG
 
23
*/
 
24
 
 
25
#include "../frame/rawFrame.h"
 
26
 
 
27
 
 
28
#ifdef HAVE_CONFIG_H
 
29
#include <config.h>
 
30
#endif
 
31
 
 
32
#ifdef OGG_VORBIS
 
33
 
 
34
#include <vorbis/codec.h>
 
35
 
 
36
class OGGFrame : public RawFrame {
 
37
 
 
38
  ogg_packet op;
 
39
 
 
40
 public:
 
41
  OGGFrame();
 
42
  ~OGGFrame();
 
43
 
 
44
 
 
45
};
 
46
 
 
47
#endif
 
48
 
 
49
#endif
 
50