try to use file sample type for cache entries and play-file playback

allow paplay to use STDIN
add new module: module-match


git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@244 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-09-27 21:05:55 +00:00
parent f014d466cd
commit 450ad85b35
9 changed files with 292 additions and 22 deletions

View file

@ -518,3 +518,10 @@ int pa_lock_file(int fd, int b) {
return 0;
}
char* pa_strip_nl(char *s) {
assert(s);
s[strcspn(s, "\r\n")] = 0;
return s;
}