summaryrefslogtreecommitdiffstats
path: root/a52
Commit message (Collapse)AuthorAgeFilesLines
* Check for --no-undefined linker flag and use it.Diego E. 'Flameeyes' Pettenò2008-11-211-1/+1
| | | | | | | This adds extra safety that the built libraries will have all the correct dependencies linked in. Signed-off-by: Diego E. 'Flameeyes' Pettenò <flameeyes@gmail.com>
* Fix build with recent ffmpegTakashi Iwai2008-08-262-2/+3
| | | | | | | | Add a check of pkgconfig libavcodec in configure script. Since the header file was moved to <libavcodec/*>, its location has to be checked in configure, too. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* Various plugins don't support "hint" sectionsTakashi Iwai2008-06-061-1/+1
| | | | | | | | | Ignore hint sections defined by hand. Those are heplful to get listed in various places, such as aplay -L ALSA bug#3834: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=3834 Signed-off-by: Takashi Iwai <tiwai@suse.de>
* Add -no-undefined option to LDFLAGSTakashi Iwai2007-06-041-1/+1
| | | | Added -no-undefined option to LDFLAGS to make linking sure.
* Fix segfault of a52 pluginTakashi Iwai2007-05-231-0/+1
| | | | | | | Added the missing call of avcodec_init() to avoid setfault of a52 plugin with the latest svn revision of ffmpeg. From: Fabian van der Werf <fvanderwerf@gmail.com>
* Add plugin directory configure optionTakashi Iwai2007-05-031-1/+1
| | | | | Added --with-plugindir configure option to specify the directory for plugin objects.
* a52 - Add slavepcm optionTakashi Iwai2006-05-241-12/+31
| | | | | | | - Added slavepcm option to specify the slave PCM string explicitly - Don't use plug but linear plugin for default slave. We need only the linear format conversion, and the channel/rate conversion should be avoided.
* Accept integer for card optionTakashi Iwai2006-04-131-3/+9
| | | | | Accept integer value for card option, as found in the example in a52.txt.
* a52 plugin - Fix iec958 frames for S16-BETakashi Iwai2006-04-071-10/+76
| | | | | - Fix iec958 header frames for S16-BE - Add more comments in the code
* Fix XRUN detection in a52 pluginTakashi Iwai2006-04-061-7/+13
| | | | Check XRUN in the write function and pointer callback of a52 plugin.
* Add a52 output pluginTakashi Iwai2006-04-062-0/+647
Added (experimental) a52 output plugin. The plugin requires libavcodec as the audio encoding engine. See doc/a52.txt for the usage.