~ubuntu-branches/ubuntu/saucy/gst-libav1.0/saucy-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavformat/voc.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-07-30 09:00:15 UTC
  • mfrom: (1.1.16) (7.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20130730090015-sc1ou2yssu7q5w4e
Tags: 1.1.3-1
* New upstream development snapshot:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.1.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
const unsigned char ff_voc_magic[21] = "Creative Voice File\x1A";
26
26
 
27
27
const AVCodecTag ff_voc_codec_tags[] = {
28
 
    {CODEC_ID_PCM_U8,        0x00},
29
 
    {CODEC_ID_ADPCM_SBPRO_4, 0x01},
30
 
    {CODEC_ID_ADPCM_SBPRO_3, 0x02},
31
 
    {CODEC_ID_ADPCM_SBPRO_2, 0x03},
32
 
    {CODEC_ID_PCM_S16LE,     0x04},
33
 
    {CODEC_ID_PCM_ALAW,      0x06},
34
 
    {CODEC_ID_PCM_MULAW,     0x07},
35
 
    {CODEC_ID_ADPCM_CT,    0x0200},
36
 
    {CODEC_ID_NONE,             0},
 
28
    {AV_CODEC_ID_PCM_U8,        0x00},
 
29
    {AV_CODEC_ID_ADPCM_SBPRO_4, 0x01},
 
30
    {AV_CODEC_ID_ADPCM_SBPRO_3, 0x02},
 
31
    {AV_CODEC_ID_ADPCM_SBPRO_2, 0x03},
 
32
    {AV_CODEC_ID_PCM_S16LE,     0x04},
 
33
    {AV_CODEC_ID_PCM_ALAW,      0x06},
 
34
    {AV_CODEC_ID_PCM_MULAW,     0x07},
 
35
    {AV_CODEC_ID_ADPCM_CT,    0x0200},
 
36
    {AV_CODEC_ID_NONE,             0},
37
37
};