Skip to content
Snippets Groups Projects
slin_adpcm_ex.h 941 B
Newer Older
  • Learn to ignore specific revisions
  • /*! \file
     * \brief slin_adpcm_ex.h --
    
    Mark Spencer's avatar
    Mark Spencer committed
     *
     *	Signed 16-bit audio data, 10 milliseconds worth at 8 kHz.
     *
     * 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 signed short slin_adpcm_ex[] = {
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
    	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
    };