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
2012-10-01avformat: Convert some commented-out printf/av_log instances to av_dlogDiego Biurrun
2012-09-15lavf: flush the output AVIOContext in av_write_trailer().Anton Khirnov
This is consistent with stdio and is what we want to do in all cases. Fixes a bug in the voc muxer which didn't flush in write_trailer() previously. This is the cause of the change in the test results.
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-01-27lavf: remove disabled FF_API_TIMESTAMP cruftAnton Khirnov
2011-12-21mxfenc: Add support for MPEG-2 MP@HL-14 in mxf container.Daniel Kristjansson
Support Main Profile at High 1440 Level in MXF container, using essence coding label from SMPTE RDD 9, table 6. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-12-11Fix a bunch of common typos.Diego Biurrun
2011-11-30lavf: make av_set_pts_info private.Anton Khirnov
It's supposed to be called only from (de)muxers.
2011-07-17lavf: use designated initialisers for all (de)muxers.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-13mxfenc: include needed header for ff_iso8601_to_unix_time() prototypeKostya Shishkov
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-13lavf: factor out conversion of ISO8601 string to unix timeAnton Khirnov
2011-07-12lavf: deprecate AVFormatContext.timestampAnton Khirnov
It's replaced by 'creation_time' metadata tag.
2011-07-05mxfenc: fix ignored drop flag in binary timecode representation.Clément Bœsch
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-07-04mxfenc: small typo fixClément Bœsch
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-04-17Replace more FFmpeg references by Libav.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-17avio: rename put_flush_packet -> avio_flushAnton 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-01avio: avio_ prefix for url_fseekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-21avio: avio: avio_ prefixes for put_* functionsAnton Khirnov
In the name of consistency: put_byte -> avio_w8 put_<type> -> avio_w<type> put_buffer -> avio_write put_nbyte will be made private put_tag will be merged with avio_put_str 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-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-15In mxf muxer, check the return value of gmtime, fix #2494Baptiste Coudurier
Originally committed as revision 26343 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-28Add extern to mxf_d10_muxer forward declaration to avoid a redundantReimar Döffinger
redeclaration warning. Originally committed as revision 24564 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-24Fix a "function declaration isn't a prototype" warning.Reimar Döffinger
Originally committed as revision 24480 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-02In mxf muxer, fix last b frame temporal offsetBaptiste Coudurier
Originally committed as revision 23967 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-23Make ff_random_get_seed public, rename to av_get_random_seed, export the headerMartin Storsjö
Keep an old ff_ named function for binary compatibility until the next major bump. Originally committed as revision 23254 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-01-29Remove MAX_STREAMS usage in ogg and mxf muxersBaptiste Coudurier
Originally committed as revision 21526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-09Use CODEC_ID_NONE instead of 0 for enum CodecID.Carl Eugen Hoyos
Originally committed as revision 20481 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-17Improve amortized worst case speed of the muxers packet interleaving codeMichael Niedermayer
from O(packets_in_the_file) to O(num_of_streams). Originally committed as revision 19887 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-04fix and simplify long gop mpeg codec ul computationBaptiste Coudurier
Originally committed as revision 19339 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-04set index duration to 0 for cbr, specifying whole container coverageBaptiste Coudurier
Originally committed as revision 19338 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-04use ber4 length for descriptors preferred by specsBaptiste Coudurier
Originally committed as revision 19337 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-04write profile and level local tag in mpeg descriptorBaptiste Coudurier
Originally committed as revision 19336 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-30cosmetics, change case and comments alignmentBaptiste Coudurier
Originally committed as revision 19305 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-30correctly compute frame flags with closed gopBaptiste Coudurier
Originally committed as revision 19304 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-23remove useless includeBaptiste Coudurier
Originally committed as revision 18906 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-15reindentBaptiste Coudurier
Originally committed as revision 18835 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-15remove unneeded length checksBaptiste Coudurier
Originally committed as revision 18834 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-15use utc time for timestamp and do not set it if not specifiedBaptiste Coudurier
Originally committed as revision 17971 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-15do not parse timestamp if bitexact is set, should fix regression testsBaptiste Coudurier
Originally committed as revision 17967 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-11again 10l, typo, put_byte instead of put_bufferBaptiste Coudurier
Originally committed as revision 17933 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-11attempt to try to generate an random umidBaptiste Coudurier
Originally committed as revision 17932 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-25fix index edit rate, inverse num and denBaptiste Coudurier
Originally committed as revision 17583 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-25simplify, use codec->block_alignBaptiste Coudurier
Originally committed as revision 17582 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-25set channel number even for inactive channelsBaptiste Coudurier
Originally committed as revision 17581 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-25do not set frame start bit since marked as not used and factorizeBaptiste Coudurier
Originally committed as revision 17580 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-23start track id at 2, track id 1 for timecodeBaptiste Coudurier
Originally committed as revision 17545 to svn://svn.ffmpeg.org/ffmpeg/trunk