⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 audio_dummy.c

📁 mpeg 2 source code for video compression
💻 C
字号:
/*	audio_dummy.c: dummy audio output	copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1	see COPYING and AUTHORS files in distribution or http://mpg123.de	initially written by Michael Hipp*/#include "config.h"#include "mpg123.h"int audio_open(struct audio_info_struct *ai){  fprintf(stderr,"No audio device support compiled into this binary (use -s).\n");  return -1;}int audio_get_formats(struct audio_info_struct *ai){  return AUDIO_FORMAT_SIGNED_16;}int audio_play_samples(struct audio_info_struct *ai,unsigned char *buf,int len){  return len;}int audio_close(struct audio_info_struct *ai){  return 0;}void audio_queueflush(struct audio_info_struct *ai){}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -