Sign in

xiemeng / Optek_sdk_131 · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • Optek_sdk_131
  • source
  • dsp
  • optek_src.h
  • Initial code
    7e937523
    luozhesi authored
    2021-05-12 09:32:43 +0800  
    Browse Files »
optek_src.h 337 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#ifndef _OPTEK_SRC_H
#define _OPTEK_SRC_H

#include "app_dac.h"


enum {
	SRC_BYPASS,
	SRC_24000_to_48000,
	SRC_22050_to_44100,
	SRC_16000_to_32000,
	SRC_12000_to_48000,
	SRC_11025_to_44100,
	SRC_8000_to_32000
};


extern U32 optek_src_buf[MP3_DEC_FRAME_SIZE];

	
void optek_src_init (void);
void optek_output(U16 *buf, U32 len);

#endif