diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2006-11-21 13:18:21 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-11-21 13:18:21 +0000 |
commit | e9f36c5c4d849eaefe8223d8468cc007098562f3 (patch) | |
tree | 8b0e8c0b1b8e6a348c0eb11670a541266bb143cf /libavformat/voc.h | |
parent | 5d244b2932c612932107ca3578ca156463a02fa9 (diff) | |
download | ffmpeg-e9f36c5c4d849eaefe8223d8468cc007098562f3.tar.gz |
move common voc muxer and demuxer data to voc.c
Originally committed as revision 7146 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/voc.h')
-rw-r--r-- | libavformat/voc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/voc.h b/libavformat/voc.h index a709765d96..16adb00782 100644 --- a/libavformat/voc.h +++ b/libavformat/voc.h @@ -23,6 +23,7 @@ #define VOC_H #include "avformat.h" +#include "riff.h" /* for CodecTag */ typedef struct voc_dec_context { int remaining_size; @@ -41,6 +42,8 @@ typedef enum voc_type { VOC_TYPE_NEW_VOICE_DATA = 0x09, } voc_type_t; +extern const unsigned char voc_magic[21]; +extern const CodecTag voc_codec_tags[]; int voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size); |