Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-02bktr: add a framerate private option.Anton Khirnov
2011-05-29v4l2: don't leak video standard string on error.Anton Khirnov
2011-05-28v4l2: add a pixel_format private option.Anton Khirnov
2011-05-28libdc1394: add a pixel_format private option.Anton Khirnov
2011-05-27x11grab: add video_size private option.Anton Khirnov
2011-05-27x11grab: factorize returning error codes.Anton Khirnov
2011-05-27vfwcap: add video_size private option.Anton Khirnov
2011-05-27v4l2: add video_size private option.Anton Khirnov
2011-05-27v4l2: factorize returning error codes.Anton Khirnov
This will be useful in the following commit.
2011-05-27libdc1394: add video_size private option.Anton Khirnov
2011-05-27libdc1394: return meaninful error codes.Anton Khirnov
2011-05-27bktr: add video_size private option.Anton Khirnov
2011-05-27bktr: factorize returning error codes.Anton Khirnov
This will be useful in the following commit.
2011-05-26v4l: include avdevice.hAnton Khirnov
Fixes build.
2011-05-26lavdevice: mark v4l for removal on next major bump.Anton Khirnov
2011-05-26libdc1394: fix compilation.Anton Khirnov
Add a forgotten comma and move options/class definition outside of HAVE_LIBDC1394_1.
2011-05-25lavf: deprecate AVFormatParameters.channel.Anton Khirnov
2011-05-25libdc1394: add a private option for channel.Anton Khirnov
2011-05-25dv1394: add a private option for channel.Anton Khirnov
2011-05-25v4l2: reindent.Anton Khirnov
2011-05-25v4l2: add a private option for channel.Anton Khirnov
2011-05-25lavf: deprecate AVFormatParameters.standard.Anton Khirnov
2011-05-25v4l2: add a private option for video standard.Anton Khirnov
2011-05-25v4l: add a private option for video standard.Anton Khirnov
2011-05-25dv1394: add a private option for video standard.Anton Khirnov
2011-05-25bktr: add a private option for video standard.Anton Khirnov
2011-05-25lavf: deprecate AVFormatParameters.{channels,sample_rate}.Anton Khirnov
2011-05-25ALSA: add channels and sample_rate private options.Anton Khirnov
2011-05-25oss: add channels and sample_rate private options.Anton Khirnov
2011-05-25sndio: add channels and sample_rate private options.Anton Khirnov
2011-05-12configure: Do not unconditionally add -D_POSIX_C_SOURCE to CPPFLAGS.Diego Biurrun
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.
2011-04-29Replace some commented-out debug printf() / av_log() messages with av_dlog().Diego Biurrun
2011-04-21libavdevice: Define _XOPEN_SOURCE for usleepMartin Storsjö
This hopefully fixes build failures on Dragonfly BSD. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-18Bump major versions of all libraries.Anton Khirnov
They've accumulated enough new APIs and corresponding deprecated cruft. This breaks API and ABI.
2011-03-30sndio bug fixBrad
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>
2011-03-28framebuffer device demuxerStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-03-27sndio support for playback and recordBrad
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-16use LIBAV_LICENSE and LIBAV_VERSION instead of FFMPEG_*Janne Grunau
2011-03-16replace FFMPEG with LIBAV in FFMPEG_CONFIGURATIONJanne Grunau
also update the multiple inclusion guards in config.h|mak
2011-02-15Merge libavcore into libavutilReinhard Tartler
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2011-01-27Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
2011-01-18consolidate .gitignore patters into a single fileJanne Grunau
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-17convert svn:ignore properties to .gitignore filesJanne Grunau
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-05Factorize common code in v4l2_set_parameters().Stefano Sabatini
Originally committed as revision 26225 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-05In video4linux2, in the case the timebase value in ap is 0/0, read theStefano Sabatini
timebase value already set in the driver, and set it back in the codec stream, rather than leaving the invalid value of 0/0. In particular, fix ffmpeg grabbing timestamps when the timebase value is not set through the CLI. Originally committed as revision 26224 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-04In the video4linux2 output device, log an error description in case ofStefano Sabatini
ioctl failure in mmap_release_buffer(). Originally committed as revision 26214 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-07Make x11grab cursor drawing suck lessJason Garrett-Glaser
This new version: 1. Works on 24-bit and 32-bit input, not just 32-bit. 2. Doesn't try to run on 16-bit or 8-bit, instead of outright crashing. 3. Does proper alpha-blending, so cursor shadows look correct. 4. Doesn't swap R and B. Mostly fixes issue 1997. Fixes issue 2056. Originally committed as revision 25690 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-23vfwcap: add option to print list of supported driversRamiro Polla
Originally committed as revision 25552 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-23Allow to set the frame rate in v4l2 devicesJosé Miguel Gonçalves
Patch by José Miguel Gonçalves (jose DOT goncalves AT inov DOT pt) Originally committed as revision 25159 to svn://svn.ffmpeg.org/ffmpeg/trunk