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
2010-05-01Make device_open() store the VIDIOC_QUERYCAP ioctl errno, and in caseStefano Sabatini
of failure return the stored value rather than the current errno, which may be overwritten by a following call to close(). Originally committed as revision 23001 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29vfwcap: flip RGB rawvideo.Ramiro Polla
Originally committed as revision 22989 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Check the return value of device_try_init() immediately after calling such aLuca Abeni
function. Avoids the following warning: libavdevice/v4l2.c: In function ‘v4l2_read_header’: libavdevice/v4l2.c:586: warning: ‘codec_id’ may be used uninitialized in this function Originally committed as revision 22986 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Fix weird brace placement.Stefano Sabatini
Originally committed as revision 22982 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Reduce the verbosity of the v4l2 input deviceLuca Abeni
Originally committed as revision 22980 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Simplify some output messages in the v4l2 input deviceLuca Abeni
Originally committed as revision 22979 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Implement v4l2 input size autodetection in v4l2_read_header().Stefano Sabatini
Move check on frame size after the device is opened and after device_try_init() is attempted. If the provided size value is 0x0, perform a VIDIOC_G_FMT ioctl() on the device, which sets size to the current settings. Originally committed as revision 22971 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-26Return meaningful error codes, rather than always -1.Stefano Sabatini
Originally committed as revision 22966 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-25Remove unnecessary width and height variables from v4l2_read_header().Stefano Sabatini
Originally committed as revision 22963 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-03Replace all remaining occurrences of AVERROR_NOMEM withStefano Sabatini
AVERROR(ENOMEM). AVERROR_NOMEM is deprecated and will be dropped at the next libavutil major bump. Originally committed as revision 22791 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-02Replace the last occurrance of CODEC_TYPE_ with AVMEDIA_TYPE_Martin Storsjö
Originally committed as revision 22776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas
Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-25Make audio_read_packet() return AVERROR_EOF rather than AVERROR(EOF) =Stefano Sabatini
AVERROR(-1) = 1. Originally committed as revision 22664 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-24x11grab: AVFormatParameters are always passed from av_open_input_stream(),Ramiro Polla
there is no need to check for it. Originally committed as revision 22651 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-21Revert removal of _NETBSD_SOURCE definition.Diego Biurrun
It is indeed necessary to compile on NetBSD. Originally committed as revision 22613 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-17vfwcap: Free remaining packets on vfw_read_close().Ramiro Polla
Originally committed as revision 22575 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-17Do not store a copy of AVFormatContext *s in vfw_ctx.Ramiro Polla
Save *s directly in SetWindowLongPtr instead. Originally committed as revision 22574 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-13Replace all the occurrences of AVERROR_EIO with AVERROR(EIO), and markStefano Sabatini
AVERROR_EIO for deletion at the next major bump. Originally committed as revision 22513 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-12Replace BSD-specific integer types by their POSIX equivalents.Diego Biurrun
Mark bktr_init function as av_cold. Tested to work by Michael Kostylev on the NetBSD FATE box. Originally committed as revision 22487 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-12Add _XOPEN_SOURCE=600 to CPPFLAGS on NetBSD.Diego Biurrun
This make NetBSD compile out of the box at the cost of a hack, but a locally contained one that is preferable to the one used in the wild. Currently the NetBSD FATE box adds -D_NETBSD_SOURCE to CPPFLAGS to work around broken system headers. Since it is unlikely for NetBSD to fix their headers, it is better to use a standard flag instead of a system-specific one. As a sideeffect, this allows getting rid of a local _NETBSD_SOURCE definition. Originally committed as revision 22486 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10vfwcap: Add support for UYVY pixel format.Ramiro Polla
Originally committed as revision 22424 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07Add some missing #includesMåns Rullgård
Originally committed as revision 22258 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-03Add _NETBSD_SOURCE definition to fix compilation on NetBSD.Jorge Acereda
NetBSD is unlikely to fix their headers and the FATE box passes it as -D_NETBSD_SOURCE on the command line anyway. In this case, it's better to keep the hack well-contained within this file. Closes issue 886. patch by Jorge Acereda, jacereda brainstorm es Originally committed as revision 22164 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23vfwcap: support MJPG compressed streams.Nash Tsai
Patch by Nash Tsai <nash dot tsai at gmail dot com> Originally committed as revision 22004 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-21Indent.Ramiro Polla
Originally committed as revision 21933 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-06Satisfy style nits.Stefano Sabatini
Originally committed as revision 21648 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-28Avoid using deprecated AVFormatParameters::[audio|video]_codec_id field.Jai Menon
Originally committed as revision 21511 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-23vfwcap: Include windows.h before vfw.h since the latter requires defineskemuri
from the former. Patch by kemuri <kemuri9 at gmail dot com> Originally committed as revision 21411 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16Add symbol versioning for shared librariesMåns Rullgård
Based on patch by Reinhard Tartler <siretart tauware de> Originally committed as revision 21236 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-03Define device_try_init() as static in libavdevice/v4l2.c.Reinhard Tartler
Patch by Reinhard Tartler (siretart AT tauware DOT de). Originally committed as revision 21004 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-15Define _XOPEN_SOURCE as 600 before including a XSI extension header.Carl Eugen Hoyos
Originally committed as revision 20871 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-14Use enum PixelFormat as type for input_pixfmt to avoid one icc warning.Carl Eugen Hoyos
Originally committed as revision 20859 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-14Support compressed formats in the V4L2 input device.Luca Abeni
Patch by klchxbec AT freenet DOT de. Originally committed as revision 20858 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-14Add support for V4L2 compressed formats in the table used for convertingLuca Abeni
between V4L2 formats and ffmpeg's formats/codecs. Patch by klchxbec AT freenet DOT de. Originally committed as revision 20857 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-14Use the correct type for the V4L2 format.Luca Abeni
Originally committed as revision 20856 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-14Return pkt->size in v4l2_read_packet().Luca Abeni
mmap_read_frame() takes care of ensuring that the packet size is correct. Originally committed as revision 20855 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-30Include alsa headers before the internal FFmpeg headers.Matthieu Castet
This avoids symbol redefinitions problems, for example avoids the "free" symbol to be redefined before system headers actually using it are included, thus breaking compilation. In particular this change allows to build FFmpeg with salsa. Patch by matthieu castet <$surname.mat?hieu@free fr>. Originally committed as revision 20665 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-30consistency with other files: av_cold static ---> static av_coldIvo van Poorten
Originally committed as revision 20662 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-27Add nomouse option to not record the mouse cursor.Michael Niedermayer
Implements issue877 Originally committed as revision 20633 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-27Remove unused stuff.Michael Niedermayer
Originally committed as revision 20632 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-27Real cursor support in x11grab.Roxis
Patch by Roxis /// roxis list dot ru Slight changes by me to update the patch to current svn. Originally committed as revision 20631 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-27Do not invent error codes but pass the error code on.Michael Niedermayer
Originally committed as revision 20630 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-27Replace very odd and completely broken oss read_packet() by the obvious way toMichael Niedermayer
read. Fixes issue348. Originally committed as revision 20629 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-18Add functions to return library license and library configuration.Diego Biurrun
Originally committed as revision 20547 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-18Split avdevice.c off from alldevices.c.Diego Biurrun
alldevices.c is not a good place for avdevice_version(). Originally committed as revision 20546 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-16Add missing #includes for avutil.h, required for the AV_VERSION* macros.Diego Biurrun
Originally committed as revision 20544 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-18cosmetics: Break overly long lines.Diego Biurrun
Originally committed as revision 20276 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-30Fix compilation of beosaudio.cpp, not tested if it actually works though.Reimar Döffinger
Originally committed as revision 20098 to svn://svn.ffmpeg.org/ffmpeg/trunk