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
2015-04-09avdevice: Apply a more consistent file naming schemeDiego Biurrun
2014-10-18oss_audio: use a macro to simplify ioctl() error checkingTimothy Gu
Also add a note about SNDCTL_DSP_GETFMTS which may fail even if OSS is available. CC: libav-stable@libav.org Bug-Id: CID 1238992 Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
2014-07-19oss_audio: Split muxer and demuxerNidhi Makhijani
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2014-07-18avdevice: Give names to anonymously typedeffed structsDiego Biurrun
Anonymous structs can cause trouble in header files, so try to avoid them altogether as a matter of good style.
2013-08-07libavdevice: use avpriv_open()Rémi Denis-Courmont
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-09-05avopt: Store defaults for AV_OPT_TYPE_INT in the i64 union memberMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-07-30Improve descriptiveness of a number of codec and container long namesDiego Biurrun
2012-07-28Add missing libavutil/time.h includes.Anton Khirnov
2012-06-20Remove unnecessary inclusions of [sys/]time.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-01-27lavf: remove AVFormatParameters from AVFormatContext.read_header signatureAnton Khirnov
2011-11-30lavf: make av_set_pts_info private.Anton Khirnov
It's supposed to be called only from (de)muxers.
2011-10-19lavf,lavd: replace av_new_stream->avformat_new_stream part I.Anton Khirnov
Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
2011-10-12AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov
2011-09-24Use explicit struct initializers for AVOutputFormat/AVInputFormat declarations.Diego Biurrun
2011-08-15lavf,lavd: remove all usage of AVFormatParameters from demuxers.Anton Khirnov
AVFormatParameters are converted into corresponding private options in av_open_input_file/stream() compat wrappers, so accessing them from demuxers is redundant.
2011-07-08libavdevice: Remove disabled code.Diego Biurrun
2011-06-10oss,sndio: simplify by using FFMIN.Reimar Döffinger
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-05-25lavf: deprecate AVFormatParameters.{channels,sample_rate}.Anton Khirnov
2011-05-25oss: add channels and sample_rate private options.Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
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.
2010-08-17Define macro AV_NE() and use it in libavdevice.Stefano Sabatini
Help further refactoring. Originally committed as revision 24814 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-02-21Indent.Ramiro Polla
Originally committed as revision 21933 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-09-12Do not do free AVStream in case of error, this is not supposed to beVitor Sessak
done by the demuxer. Fix issue 1378. Originally committed as revision 19825 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-26Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård
Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-29Make the configure script select the input/output devices usingStefano Sabatini
--enable-indev, --enable-outdev rather than --enable-demuxer, --enable-muxer as before, same for disabling them. Originally committed as revision 19293 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-21Rename audio.c to oss_audio.c in libavdevice.Benoit Fouet
Originally committed as revision 16707 to svn://svn.ffmpeg.org/ffmpeg/trunk