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/vocenc.c | |
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/vocenc.c')
-rw-r--r-- | libavformat/vocenc.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libavformat/vocenc.c b/libavformat/vocenc.c index 64e8ccf473..ed304883d1 100644 --- a/libavformat/vocenc.c +++ b/libavformat/vocenc.c @@ -19,26 +19,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "avformat.h" -#include "riff.h" /* for CodecTag */ #include "voc.h" -static const unsigned char voc_magic[] = "Creative Voice File\x1A"; - -static const CodecTag voc_codec_tags[] = { - {CODEC_ID_PCM_U8, 0x00}, - {CODEC_ID_ADPCM_SBPRO_4, 0x01}, - {CODEC_ID_ADPCM_SBPRO_3, 0x02}, - {CODEC_ID_ADPCM_SBPRO_2, 0x03}, - {CODEC_ID_PCM_S16LE, 0x04}, - {CODEC_ID_PCM_ALAW, 0x06}, - {CODEC_ID_PCM_MULAW, 0x07}, - {CODEC_ID_ADPCM_CT, 0x0200}, - {0, 0}, -}; - - typedef struct voc_enc_context { int param_written; } voc_enc_context_t; |