yading@10
|
1 /*
|
yading@10
|
2 * This file is part of FFmpeg.
|
yading@10
|
3 *
|
yading@10
|
4 * FFmpeg is free software; you can redistribute it and/or
|
yading@10
|
5 * modify it under the terms of the GNU Lesser General Public
|
yading@10
|
6 * License as published by the Free Software Foundation; either
|
yading@10
|
7 * version 2.1 of the License, or (at your option) any later version.
|
yading@10
|
8 *
|
yading@10
|
9 * FFmpeg is distributed in the hope that it will be useful,
|
yading@10
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
yading@10
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
yading@10
|
12 * Lesser General Public License for more details.
|
yading@10
|
13 *
|
yading@10
|
14 * You should have received a copy of the GNU Lesser General Public
|
yading@10
|
15 * License along with FFmpeg; if not, write to the Free Software
|
yading@10
|
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
yading@10
|
17 */
|
yading@10
|
18
|
yading@10
|
19 #ifndef AVDEVICE_AVDEVICE_H
|
yading@10
|
20 #define AVDEVICE_AVDEVICE_H
|
yading@10
|
21
|
yading@10
|
22 #include "version.h"
|
yading@10
|
23
|
yading@10
|
24 /**
|
yading@10
|
25 * @file
|
yading@10
|
26 * @ingroup lavd
|
yading@10
|
27 * Main libavdevice API header
|
yading@10
|
28 */
|
yading@10
|
29
|
yading@10
|
30 /**
|
yading@10
|
31 * @defgroup lavd Special devices muxing/demuxing library
|
yading@10
|
32 * @{
|
yading@10
|
33 * Libavdevice is a complementary library to @ref libavf "libavformat". It
|
yading@10
|
34 * provides various "special" platform-specific muxers and demuxers, e.g. for
|
yading@10
|
35 * grabbing devices, audio capture and playback etc. As a consequence, the
|
yading@10
|
36 * (de)muxers in libavdevice are of the AVFMT_NOFILE type (they use their own
|
yading@10
|
37 * I/O functions). The filename passed to avformat_open_input() often does not
|
yading@10
|
38 * refer to an actually existing file, but has some special device-specific
|
yading@10
|
39 * meaning - e.g. for x11grab it is the display name.
|
yading@10
|
40 *
|
yading@10
|
41 * To use libavdevice, simply call avdevice_register_all() to register all
|
yading@10
|
42 * compiled muxers and demuxers. They all use standard libavformat API.
|
yading@10
|
43 * @}
|
yading@10
|
44 */
|
yading@10
|
45
|
yading@10
|
46 #include "libavformat/avformat.h"
|
yading@10
|
47
|
yading@10
|
48 /**
|
yading@10
|
49 * Return the LIBAVDEVICE_VERSION_INT constant.
|
yading@10
|
50 */
|
yading@10
|
51 unsigned avdevice_version(void);
|
yading@10
|
52
|
yading@10
|
53 /**
|
yading@10
|
54 * Return the libavdevice build-time configuration.
|
yading@10
|
55 */
|
yading@10
|
56 const char *avdevice_configuration(void);
|
yading@10
|
57
|
yading@10
|
58 /**
|
yading@10
|
59 * Return the libavdevice license.
|
yading@10
|
60 */
|
yading@10
|
61 const char *avdevice_license(void);
|
yading@10
|
62
|
yading@10
|
63 /**
|
yading@10
|
64 * Initialize libavdevice and register all the input and output devices.
|
yading@10
|
65 * @warning This function is not thread safe.
|
yading@10
|
66 */
|
yading@10
|
67 void avdevice_register_all(void);
|
yading@10
|
68
|
yading@10
|
69 #endif /* AVDEVICE_AVDEVICE_H */
|