All of lore.kernel.org
 help / color / mirror / Atom feed
From: Juan Carlos Castro y Castro <jcastro@instant.com.br>
To: Takashi Iwai <tiwai@suse.de>
Cc: alsa-devel@lists.sourceforge.net
Subject: Re: Doubt on implementing .readi and .readn methods
Date: Tue, 16 May 2006 18:17:14 -0300	[thread overview]
Message-ID: <446A415A.5070505@instant.com.br> (raw)
In-Reply-To: <s5hac9jws8q.wl%tiwai@suse.de>

Takashi Iwai wrote:

>"area" refers to snd_pcm_channel_area_t.  It's an exported struct
>defined in pcm.h:
>
>/** PCM area specification */
>typedef struct _snd_pcm_channel_area {
>	/** base address of channel samples */
>	void *addr;
>	/** offset to first sample in bits */
>	unsigned int first;
>	/** samples distance in bits */
>	unsigned int step;
>} snd_pcm_channel_area_t;
>
>An area array is used for a stream with multiple channels.  Each
>element of the array contains the area information for one channel.
>For example, in the case of 16bit 4-channel interleaved format,
>
>	area[*].addr = base_addr
>	area[0].first = 0
>	area[1].first = 16
>	area[2].first = 32
>	area[3].first = 48
>	area[*].step = 64
>
>"frame" is the unit of samples, and 1 frame = sample-width * chanenels.
>e.g. for 16bit 4-channel format, 1 frame = 2 * 4 = 8 bytes.
>  
>
OK, let me see if I get this straight. My main concern here is how I 
have to do the implementation of _readn(). Let's suppose the raw file 
has the following 16-bit words in it: A, B, C, D, E, F, G, H, I...

After performing the _readn(), the memory ponted to by buf[0] to buf[3] 
(four channels) will have to contain the following 16-bit words:

buf[0] -> A, E, I, ...
buf[1] -> B, F, J, ...
buf[2] -> C, G, K, ...
buf[3] -> D, H, L, ...

So, I'll have to read from the file to a temporary buffer and do the 
juggling of the words (each consisting of (pcm->sample_bits >> 3) 
bytes). Check?

Juan


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

  parent reply	other threads:[~2006-05-16 21:17 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-05-12 19:27 Doubt on implementing .readi and .readn methods Juan Carlos Castro y Castro
2006-05-15  9:29 ` Takashi Iwai
2006-05-15 20:05   ` Juan Carlos Castro y Castro
2006-05-15 20:31     ` Juan Carlos Castro y Castro
2006-05-15 20:38     ` Lee Revell
2006-05-15 20:56       ` Juan Carlos Castro y Castro
2006-05-15 21:19         ` Lee Revell
2006-05-15 21:29           ` Juan Carlos Castro y Castro
2006-05-16 21:17   ` Juan Carlos Castro y Castro [this message]
2006-05-17 13:37     ` Takashi Iwai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=446A415A.5070505@instant.com.br \
    --to=jcastro@instant.com.br \
    --cc=alsa-devel@lists.sourceforge.net \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.