Hauptseite   Klassenhierarchie   Alphabetische Liste   Übersicht   Auflistung der Dateien   Elementübersicht  

Codec.h

00001 /***************************************************************************
00002                           Codec.h  -  description
00003                              -------------------
00004     begin                : Sat Jan 19 2002
00005     copyright            : (C) 2002 by Christian Tusche
00006     email                : christian.tusche@stud.uni-goettingen.de
00007  ***************************************************************************/
00008 
00009 /***************************************************************************
00010  *                                                                         *
00011  *   This program is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU General Public License as published by  *
00013  *   the Free Software Foundation; either version 2 of the License, or     *
00014  *   (at your option) any later version.                                   *
00015  *                                                                         *
00016  ***************************************************************************/
00017 
00018 #ifndef CODEC_H
00019 #define CODEC_H
00020 
00021 #include "optionlist.h"
00022 
00023 class VideoFile;
00024 class Track;
00025 
00030 class Codec: public OptionList {
00031 public: 
00032     Codec( Track *tr );
00033     virtual ~Codec();
00034 
00038     virtual const String CodecName( void );
00039 
00046     virtual int GetExtraInfo( void *&info, unsigned int &size ) { return 0; }
00047 
00054     virtual int SetExtraInfo( void *info, unsigned int size ) { return 0; }
00055 
00061     virtual int SeekTime( double seconds ) { return track->SeekTime( seconds ); }
00062 
00063 protected:
00064     Track *track;
00065     VideoFile *file;       // übergeordnete Videodatei
00066     VideoFile::IO_Mode iomode;
00067 };
00068 
00069 #endif

Erzeugt am Tue Dec 31 22:54:54 2002 für av_convert von doxygen1.2.9.1 geschrieben von Dimitri van Heesch, © 1997-2001