pcm-bytes(ALSA-bufferから)をkernel-spaceからkernel-module(LKM)内のファイルにコピー/書き込みしようとしています。
ファイルが書き込まれ、サイズは問題ないように見えますが、PCMデータであるため、正しいかどうかはわかりません(生のオーディオデータ、読み取り不可)。
私のオーディオプレーヤー(MPlayer = "Invalid seek tonegative position ffffffffffffffff!"、VLC、Foobar2000)は、書き込まれたファイルを再生できないため、コードに誤りがあると思います。
SCITEを介してファイルを開くと、多くの「NUL」やその他の叫び声が表示されます(バイト;)。
たぶんあなたの一人がバグを見つけましたか?
私はこのスクリプトを持っています:
unsigned char *dma_area; // this is the source, an mmapped-area
int pcm_offset_bytes; // the actual offset in the dma_area
int size_bytes; // the amount of bytes to copy
struct file *target_file; // the target-file
int ret; // used in write-process below
int wrote = 0; // used in write-process below
mm_segment_t fs;
void *data; // dma_area + pcm_offset_bytes
// (..) calculate offset and size
// open the target file
target_file = filp_open("/dev/snd/pcmC0D0p_output", (O_CREAT | O_TRUNC | O_WRONLY), (S_IRWXU | S_IRWXG | S_IRWXO));
data = dma_area + pcm_offset_bytes
fs = get_fs();
set_fs (get_ds ());
if (!target_file || !target_file->f_op || !target_file->f_op->write) {
LOGI("something's missing\n");
return -EIO;
}
// loop until every byte is written
while (size_bytes > 0) {
ret = target_file->f_op->write(target_file, (char *)data, size_bytes, &target_file->f_pos);
LOGI ("wrote %d bytes to target_file@%p, return %d\n", size_bytes, target_file, ret);
if (ret <= 0)
goto done;
size_bytes -= ret;
data += ret;
wrote += ret;
}
ret = wrote;
done:
set_fs(fs);
LOGI("result %d\n", ret);