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-09-07libx264: add 'direct-pred' private optionAnton Khirnov
Deprecate AVCodecContext.directpred
2011-09-07libx264: add 'partitions' private optionAnton Khirnov
Deprecate AVCodecContext.partitions.
2011-08-09Rename ffserver to avserver.Anton Khirnov
2011-07-17lavf: use designated initialisers for all (de)muxers.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-06lavf: deprecate AVStream.quality.Anton Khirnov
AVStream is no place for it and it's unused outside of ffmpeg anyway.
2011-07-04Do not include intfloat_readwrite.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-10Replace DEBUG_SEEK/DEBUG_SI + av_log combinations by av_dlog.Diego Biurrun
2011-04-29Remove some disabled printf debug cruft.Diego Biurrun
2011-04-04avio: introduce an AVIOContext.seekable fieldAnton Khirnov
Use it instead of url_is_streamed and AVIOContext.is_streamed.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-17lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes senseAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-08avio: deprecate url_feofAnton Khirnov
AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-07avio: avio_ prefix for url_fsizeAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-04avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-04lavf: deprecate get_strz() in favor of avio_get_strAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-01lavf: replace all uses of url_fskip with avio_seekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-01avio: avio_ prefix for url_fseekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-21avio: avio_ prefixes for get_* functionsAnton Khirnov
In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-20avio: rename ByteIOContext to AVIOContext.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-30Replace dprintf with av_dlogLuca Barbato
dprintf clashes with POSIX.1-2008
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-07-25Move ffm_close function up to avoid a forward declaration.Reimar Döffinger
Originally committed as revision 24491 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-25ffmdec: Do not manually free streams on read_header error, this is alwaysReimar Döffinger
handled by upper layers. Fixes double-frees (issue 2003). Instead call ffm_close to ensure rc_eqs are freed also in the error case. Originally committed as revision 24490 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-17Cast sample_fmt (as read from bitstream as a 16-bit value) to int16, so thatRonald S. Bultje
negative values, e.g. SAMPLE_FMT_NONE (-1), are read correctly also. Originally committed as revision 22585 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10Fix ffm_close return type.Benoit Fouet
Originally committed as revision 22432 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10Fix memory leak in FFM demuxerVitor Sessak
Originally committed as revision 22431 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-15Fix breakage introduced by setting the sample_fmt to SAMPLE_FMT_NONE ↵Benjamin Larsson
(r20623). This makes streaming to ffserver work again. Originally committed as revision 20869 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-24Update ffserver to include all basic x264 parameters in .ffm files.Jason Garrett-Glaser
Originally committed as revision 20601 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-10remove useless duplication of what av_new_stream() already doesAurelien Jacobs
Originally committed as revision 18416 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21fix compilation when DEBUG_SEEK is definedBaptiste Coudurier
Originally committed as revision 18099 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21fix valid seeking rangeBaptiste Coudurier
Originally committed as revision 18098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-20resync ffm if error in streamBaptiste Coudurier
Originally committed as revision 18065 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-20typo, fix eof checkBaptiste Coudurier
Originally committed as revision 18064 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-20do not write ffm write index by default, detect if file is being written and ↵Baptiste Coudurier
return EOF Originally committed as revision 18063 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-12return error if read failedBaptiste Coudurier
Originally committed as revision 17173 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-12Change ffm_write_write_index to return int, and return if error occured.Patrik Kullman
Patch by Patrik Kullman, patrik at yes dot nu Originally committed as revision 17172 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-02return eof/error if only ffm header has been written, should fix #815Baptiste Coudurier
Originally committed as revision 16924 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-19cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun
Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-12Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun
Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-03Remove offset_t typedef and use int64_t directly instead.Diego Biurrun
The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included. Originally committed as revision 15533 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-28Improve long names for FFM muxer and demuxer:Stefano Sabatini
change "ffm format" to "FFM (FFserver live feed) format". Originally committed as revision 14438 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-22cosmetics, pts->dtsBaptiste Coudurier
Originally committed as revision 13881 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-22enable feeder threadsBaptiste Coudurier
Originally committed as revision 13868 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-20ffm has no per stream priv_data anymoreBaptiste Coudurier
Originally committed as revision 13832 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-09Fix compilation with -DDEBUG, patch by Albert Astals Cid, aastals tv-wan es.Albert Astals Cid
Originally committed as revision 13727 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-09pass dts and pts through ffm, should fix streaming b framesBaptiste Coudurier
Originally committed as revision 13725 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-09pass extradata through ffmBaptiste Coudurier
Originally committed as revision 13721 to svn://svn.ffmpeg.org/ffmpeg/trunk