summaryrefslogtreecommitdiff
path: root/lib/frame.cc
diff options
context:
space:
mode:
authordeva <deva>2006-07-20 15:11:45 +0000
committerdeva <deva>2006-07-20 15:11:45 +0000
commite1af275ed3fc5a3ab2e50be325e44bd2de705bea (patch)
tree304d59a6c336f337c41c86725880364901553e54 /lib/frame.cc
parent7b997e9a988e1ef6fe41680dc90be545a9ed1710 (diff)
Added the transcoder, formalized the video and audio formats in format.h
Diffstat (limited to 'lib/frame.cc')
-rw-r--r--lib/frame.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/frame.cc b/lib/frame.cc
index 472a03a..3a6c1eb 100644
--- a/lib/frame.cc
+++ b/lib/frame.cc
@@ -30,8 +30,8 @@
#include <memory.h>
#include <stdlib.h>
-Frame::Frame(char *vframe, int vframesize, int vformat,
- char *aframe, int aframesize, int aformat)
+Frame::Frame(char *vframe, int vframesize, video_format_t vformat,
+ char *aframe, int aframesize, audio_format_t aformat)
{
// Video
this->vframe = vframe;