summaryrefslogtreecommitdiff
path: root/libavdevice
Commit message (Collapse)AuthorAge
...
* lavf,lavc: free avoptions in a generic way.Anton Khirnov2011-06-05
| | | | | | It's simpler and less error-prone. Fixes some memleaks along the way.
* x11grab: add framerate private option.Anton Khirnov2011-06-04
|
* fbdev,v4l2: remove some forgotten uses of AVFormatParameters.time_base.Anton Khirnov2011-06-04
|
* bktr: don't error when AVFormatParameters.time_base isn't set.Anton Khirnov2011-06-04
| | | | There's a private option for it now.
* Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name().Stefano Sabatini2011-06-03
| | | | | This fixes warnings about avcodec_get_pix_fmt_name() being deprecated. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* bktr: get default framerate from video standard.Anton Khirnov2011-06-03
|
* Replace custom DEBUG preprocessor trickery by the standard one.Diego Biurrun2011-06-03
|
* Replace #ifdef + av_log() combinations by av_dlog().Diego Biurrun2011-06-03
|
* v4l2: remove one forgotten use of AVFormatParameters.pix_fmt.Anton Khirnov2011-06-02
|
* vfwcap: add a framerate private option.Anton Khirnov2011-06-02
|
* v4l2: add a framerate private option.Anton Khirnov2011-06-02
|
* libdc1394: add a framerate private option.Anton Khirnov2011-06-02
|
* fbdev: add a framerate private option.Anton Khirnov2011-06-02
|
* bktr: add a framerate private option.Anton Khirnov2011-06-02
|
* v4l2: don't leak video standard string on error.Anton Khirnov2011-05-29
|
* v4l2: add a pixel_format private option.Anton Khirnov2011-05-27
|
* libdc1394: add a pixel_format private option.Anton Khirnov2011-05-27
|
* x11grab: add video_size private option.Anton Khirnov2011-05-27
|
* x11grab: factorize returning error codes.Anton Khirnov2011-05-27
|
* vfwcap: add video_size private option.Anton Khirnov2011-05-27
|
* v4l2: add video_size private option.Anton Khirnov2011-05-27
|
* v4l2: factorize returning error codes.Anton Khirnov2011-05-27
| | | | This will be useful in the following commit.
* libdc1394: add video_size private option.Anton Khirnov2011-05-27
|
* libdc1394: return meaninful error codes.Anton Khirnov2011-05-27
|
* bktr: add video_size private option.Anton Khirnov2011-05-27
|
* bktr: factorize returning error codes.Anton Khirnov2011-05-27
| | | | This will be useful in the following commit.
* v4l: include avdevice.hAnton Khirnov2011-05-26
| | | | Fixes build.
* lavdevice: mark v4l for removal on next major bump.Anton Khirnov2011-05-26
|
* libdc1394: fix compilation.Anton Khirnov2011-05-26
| | | | | Add a forgotten comma and move options/class definition outside of HAVE_LIBDC1394_1.
* lavf: deprecate AVFormatParameters.channel.Anton Khirnov2011-05-25
|
* libdc1394: add a private option for channel.Anton Khirnov2011-05-25
|
* dv1394: add a private option for channel.Anton Khirnov2011-05-25
|
* v4l2: reindent.Anton Khirnov2011-05-25
|
* v4l2: add a private option for channel.Anton Khirnov2011-05-25
|
* lavf: deprecate AVFormatParameters.standard.Anton Khirnov2011-05-25
|
* v4l2: add a private option for video standard.Anton Khirnov2011-05-25
|
* v4l: add a private option for video standard.Anton Khirnov2011-05-25
|
* dv1394: add a private option for video standard.Anton Khirnov2011-05-25
|
* bktr: add a private option for video standard.Anton Khirnov2011-05-25
|
* lavf: deprecate AVFormatParameters.{channels,sample_rate}.Anton Khirnov2011-05-25
|
* ALSA: add channels and sample_rate private options.Anton Khirnov2011-05-25
|
* oss: add channels and sample_rate private options.Anton Khirnov2011-05-25
|
* sndio: add channels and sample_rate private options.Anton Khirnov2011-05-25
|
* configure: Do not unconditionally add -D_POSIX_C_SOURCE to CPPFLAGS.Diego Biurrun2011-05-12
| | | | | | | | | | | | | | | | Adding _POSIX_C_SOURCE to CPPFLAGS globally produces all sorts of problems since it causes certain system functions to be hidden on some (BSD) systems. The solution is to only add the flag on systems that really require it, i.e. glibc-based ones. This change makes BSD systems compile out-of-the-box without the need for adding specific flags manually. It also allows dropping a number of flags set manually on a file-per-file basis, but were only present to work around breakage introduced by the presence of _POSIX_C_SOURCE. Also add _XOPEN_SOURCE to CPPFLAGS for glibc systems. We use XSI extensions in several places already, so it is preferable to define it globally instead of littering source files with individual #defines only needed for glibc.
* Replace some commented-out debug printf() / av_log() messages with av_dlog().Diego Biurrun2011-04-29
|
* libavdevice: Define _XOPEN_SOURCE for usleepMartin Storsjö2011-04-21
| | | | | | This hopefully fixes build failures on Dragonfly BSD. Signed-off-by: Martin Storsjö <martin@martin.st>
* Bump major versions of all libraries.Anton Khirnov2011-04-18
| | | | | | They've accumulated enough new APIs and corresponding deprecated cruft. This breaks API and ABI.
* sndio bug fixBrad2011-03-29
| | | | | | | | Since the code already supports both little- and big-endian audio for recording, do not fail just because the endianness is not what we expect. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* framebuffer device demuxerStefano Sabatini2011-03-28
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* sndio support for playback and recordBrad2011-03-27
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>