~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavdevice/avdevice.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#ifndef AVDEVICE_AVDEVICE_H
20
20
#define AVDEVICE_AVDEVICE_H
21
21
 
 
22
/**
 
23
 * @file
 
24
 * @ingroup lavd
 
25
 * Main libavdevice API header
 
26
 */
 
27
 
 
28
/**
 
29
 * @defgroup lavd Special devices muxing/demuxing library
 
30
 * @{
 
31
 * Libavdevice is a complementary library to @ref libavf "libavformat". It
 
32
 * provides various "special" platform-specific muxers and demuxers, e.g. for
 
33
 * grabbing devices, audio capture and playback etc. As a consequence, the
 
34
 * (de)muxers in libavdevice are of the AVFMT_NOFILE type (they use their own
 
35
 * I/O functions). The filename passed to avformat_open_input() often does not
 
36
 * refer to an actually existing file, but has some special device-specific
 
37
 * meaning - e.g. for the x11grab device it is the display name.
 
38
 *
 
39
 * To use libavdevice, simply call avdevice_register_all() to register all
 
40
 * compiled muxers and demuxers. They all use standard libavformat API.
 
41
 * @}
 
42
 */
 
43
 
22
44
#include "libavutil/avutil.h"
23
45
 
24
46
#define LIBAVDEVICE_VERSION_MAJOR 53
25
 
#define LIBAVDEVICE_VERSION_MINOR  0
 
47
#define LIBAVDEVICE_VERSION_MINOR  2
26
48
#define LIBAVDEVICE_VERSION_MICRO  0
27
49
 
28
50
#define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \