2007-11-22 16:10:02 +00:00
|
|
|
/*
|
|
|
|
* Register all the grabbing devices.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2007-11-22 16:10:02 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2007-11-22 16:10:02 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2007-11-22 16:10:02 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2007-11-22 16:10:02 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2008-05-09 11:56:36 +00:00
|
|
|
|
2008-04-27 11:52:35 +00:00
|
|
|
#include "config.h"
|
2008-05-09 11:56:36 +00:00
|
|
|
#include "libavformat/avformat.h"
|
2010-03-06 22:36:36 +00:00
|
|
|
#include "avdevice.h"
|
2007-11-22 16:10:02 +00:00
|
|
|
|
2012-12-25 14:29:39 +00:00
|
|
|
#define REGISTER_INDEV(X, x) \
|
|
|
|
{ \
|
|
|
|
extern AVInputFormat ff_##x##_demuxer; \
|
|
|
|
if (CONFIG_##X##_INDEV) \
|
|
|
|
av_register_input_format(&ff_##x##_demuxer); \
|
|
|
|
}
|
|
|
|
|
2007-11-22 16:10:02 +00:00
|
|
|
void avdevice_register_all(void)
|
|
|
|
{
|
2008-02-13 09:26:10 +00:00
|
|
|
static int initialized;
|
2007-11-22 16:10:02 +00:00
|
|
|
|
2008-02-13 09:26:10 +00:00
|
|
|
if (initialized)
|
2007-11-22 16:10:02 +00:00
|
|
|
return;
|
2008-02-13 09:26:10 +00:00
|
|
|
initialized = 1;
|
2007-11-22 16:10:02 +00:00
|
|
|
|
2017-09-23 14:26:28 +00:00
|
|
|
/* input devices */
|
|
|
|
REGISTER_INDEV(ALSA, alsa);
|
|
|
|
REGISTER_INDEV(AVFOUNDATION, avfoundation);
|
|
|
|
REGISTER_INDEV(BKTR, bktr);
|
|
|
|
REGISTER_INDEV(FBDEV, fbdev);
|
|
|
|
REGISTER_INDEV(JACK, jack);
|
|
|
|
REGISTER_INDEV(OSS, oss);
|
|
|
|
REGISTER_INDEV(PULSE, pulse);
|
|
|
|
REGISTER_INDEV(SNDIO, sndio);
|
|
|
|
REGISTER_INDEV(V4L2, v4l2);
|
|
|
|
REGISTER_INDEV(VFWCAP, vfwcap);
|
|
|
|
REGISTER_INDEV(XCBGRAB, xcbgrab);
|
2007-11-22 16:10:02 +00:00
|
|
|
|
|
|
|
/* external libraries */
|
2017-09-23 14:26:28 +00:00
|
|
|
REGISTER_INDEV(LIBCDIO, libcdio);
|
|
|
|
REGISTER_INDEV(LIBDC1394, libdc1394);
|
2007-11-22 16:10:02 +00:00
|
|
|
}
|