Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > GNU Linux Zone > Gaming / Games / Multimedia / Entertainment > V4l2 API and Audio

Forgot Password?
 Gaming / Games / Multimedia / Entertainment   General discussion about Games, video, sound, multimedia, DVD's in Linux

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 09-03-2009   #1 (permalink)
Just Joined!
 
Join Date: Sep 2009
Posts: 1
V4l2 API and Audio

I would like to access the mic input on my laptop through V4L2. I thought the best way to start would be to locate the API doc, read it and write a small program. The problem is, I don't know which device file to open. I have several device files that look related to audio, but when I try to perform a VIDIOC_ENUMAUDIO or VIDIOC_ENUMAUDOUT, the ioctl returns an error (usually 'Invalid Argument'). I have tried /dev/audio/ and /dev/mixer and the various files under /dev/snd. I believe the /dev/snd are ALSA devices and I believe these are what show up in /proc/asound/devices. There is no /dev/video device file.

I would like to go through V4L2 if for nothing more than to learn more about it. If I must use ALSA, then I guess I will. In any event, here is the code - hopefully it will help:

int main(int argc, char *argv[])
{
struct v4l2_audio audioParms;
int fdAudio;

fdAudio= open("/dev/snd/pcmC0D0p", O_RDWR);
if (fdAudio >= 0)
{
memset(&audioParms,0,sizeof(struct v4l2_audio));
if (ioctl(fdAudio,VIDIOC_ENUMAUDOUT,&audioParms) == 0)
{
printf("GOT PARMS\n");
}
else
{
printf("v4ltest: ERROR %d trying VIDIOC_ENUMAUDOUT on index %d\n",errno,audioParms.index);
perror("v4ltest: ioctl error ");
}
close(fdAudio);
}
else
{
perror("v4ltest: ERROR opening audio device ");
}
return (0);
}
tahut is offline  


Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 02:14 PM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2