Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/avi_play/src/lib/graphics/importer/media_container.cc @ 5937

Last change on this file since 5937 was 5937, checked in by hdavid, 18 years ago

branches/avi_file: created media_container files

File size: 1.2 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: David Hasenfratz, Stephan Lienhard
13   co-programmer:
14*/
15
16
17
18/* this is for debug output. It just says, that all calls to PRINT() belong to the DEBUG_MODULE_MEDIA module
19   For more information refere to https://www.orxonox.net/cgi-bin/trac.cgi/wiki/DebugOutput
20*/
21#define DEBUG_MODULE_MEDIA
22
23
24/* include your own header */
25#include "media_container.h"
26
27/* header for debug output */
28#include "debug.h"
29
30
31/**
32 * Default constructor
33 */
34MediaContainer::MediaContainer()
35{
36
37}
38
39/**
40 * Default destructor
41 */
42MediaContainer::~MediaContainer()
43{
44
45}
46
47GLuint MediaContainer::getFrame(int frame_number)
48{
49
50}
51
52GLuint MediaContainer::getNextFrame()
53{
54
55}
56
57void MediaContainer::loadMedia(char* filename)
58{
59
60}
61
62int MediaContainer::getHeight()
63{
64
65}
66
67int MediaContainer::getWidth()
68{
69
70}
71
72int MediaContainer::getFrameRate()
73{
74
75}
76
77void MediaContainer::getStream(/* stream */)
78{
79
80}
Note: See TracBrowser for help on using the repository browser.