linux man page for get_sound_input_cap_rate

Query: get_sound_input_cap_rate

OS: linux

Section: 3alleg4

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

get_sound_input_cap_rate(3alleg4)				  Allegro manual				 get_sound_input_cap_rate(3alleg4)

NAME
get_sound_input_cap_rate - Returns the maximum sample frequency for recording. Allegro game programming library. SYNOPSIS
#include <allegro.h> int get_sound_input_cap_rate(int bits, int stereo); DESCRIPTION
Returns the maximum possible sample frequency for recording in the specified format, or zero if these settings are not supported. The bits parameter is the number of bits of the audio, and stereo is a boolean parameter. Pass zero for mono, non-zero for stereo input. Example: int max_freq; ... /* What frequency can we record 8 bits mono at? */ max_freq = get_sound_input_cap_rate(8, 0); if (max_freq > 22000) { /* Ok, 22KHz and above is good enough. */ } SEE ALSO
start_sound_input(3alleg4), get_sound_input_cap_parm(3alleg4), get_sound_input_cap_bits(3alleg4), get_sound_input_cap_stereo(3alleg4) Allegro version 4.4.2 get_sound_input_cap_rate(3alleg4)
Related Man Pages
get_sound_input_cap_parm(3alleg4) - debian
start_sound_input(3alleg4) - debian
load_sample(3alleg4) - centos
load_sample(3alleg4) - netbsd
get_sound_input_cap_parm(3alleg4) - linux
Similar Topics in the Unix Linux Community
Simple rules of the UNIX.COM forums:
Featured Books and Articles by Active Forum Members
User Guide: Posting in the Emergency Forum
Forum Video Tutorial: How to Use Code Tags
YouTube: How to Use Code Tags and Format Posts @UNIX.com