search for: rawmode

Displaying 4 results from an estimated 4 matches for "rawmode".

2015 Jan 26
0
[PATCH] oggenc: do not use stack variable out of its scope of validity
...ps://bugzilla.redhat.com/1185558 --- oggenc/oggenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oggenc/oggenc.c b/oggenc/oggenc.c index ea105b2..323dedb 100644 --- a/oggenc/oggenc.c +++ b/oggenc/oggenc.c @@ -239,7 +239,7 @@ int main(int argc, char **argv) if(opt.rawmode) { - input_format raw_format = {NULL, 0, raw_open, wav_close, "raw", + static input_format raw_format = {NULL, 0, raw_open, wav_close, "raw", N_("RAW file reader")}; enc_opts.rate=opt.raw_samplerate; -- 2...
2006 Mar 02
0
Dmesg errors logged
...han clutter up the pages here, I stuffed it on my server so anyone wishing to look at it and comment can do so. The file is available at http://wa4phy.net/dmesg.txt Lots of segfaults I know which application they came from, but I don't quite understand about the keyboard errors and emulating rawmode for keycode 240. There also appears to be a few disk errors, both in buffer I/O and a few others I have no idea what they are. At any rate, would appreciate any comments, or if something needs a tweak, that too. Sam -------------- next part -------------- An HTML attachment was scrubbed... URL:...
2007 Apr 27
0
How to get arcnet working with other-than-root accounts?
...#39;ve successfully gotten the arcnet driver compiled and installed into a Centos kernel. Admittedly, with a lot of help. Currently, I'm using the following script to get arcnet up and running: cd /usr/src/redhat/BUILD/kernel-2.6.9/linux-2.6.9/drivers/net/arcnet insmod arcnet.ko insmod arc-rawmode.ko insmod com20020.ko insmod com20020-pci.ko node=3 device=arc0 timeout=3 backplane=0 clockp=0 clockm=0 insmod rfc1201.ko ifconfig arc0 up The raw-recv and raw-send examples now work after this, but only when run as root. When run as a regular user, I get: socket: Operation not permitted So:...
2015 Oct 08
2
[PATCH 0/1] opusenc support for WavPack input
This patch to opus-tools adds optional support to WavPack lossless format as input to opusenc. Like support to FLAC, it depends on an external library, libwavpack, and may be disabled on configure. Lucas Clemente Vella (1): Reading input from WavPack files. Makefile.am | 7 +- configure.ac | 37 ++++++++ src/audio-in.c | 71 ++++++++------- src/opusenc.c | 19 +++- src/opusenc.h