Skip to content
Snippets Groups Projects
adpcm_slin_ex.h 775 B
Newer Older
  • Learn to ignore specific revisions
  • /*! \file
    
    Mark Spencer's avatar
    Mark Spencer committed
     * adpcm_slin_ex.h --
     *
    
     * \brief	4-bit ADPCM data, 20 milliseconds worth at 8 kHz.
    
    Mark Spencer's avatar
    Mark Spencer committed
     *
     * Source: g723.example
     *
    
     * Copyright (C) 2001-2005, Digium, Inc.
    
    Mark Spencer's avatar
    Mark Spencer committed
     *
     * Distributed under the terms of the GNU General Public License
     *
     */
    
    static unsigned char adpcm_slin_ex[] = {
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    };