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-07-30mxfdec: Include FF_INPUT_BUFFER_PADDING_SIZE when allocating extradata.Alex Converse
This prevents out of bounds reads when extradata is being decoded.
2011-07-17lavf: use designated initialisers for all (de)muxers.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-04Do not include mathematics.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-01Employ correct printf format specifiers, mostly in debug output.Diego Biurrun
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-04avio: add avio_tell macro as a replacement for url_ftellAnton 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-21Zero-initialize structs/arrays with {0} instead of {}, which isn't proper C99Axel Holzinger
Patch by Axel Holzinger, aholzinger at gmx dot de Originally committed as revision 24391 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-01Change all functions referenced in the mxf_metadata_read_table to use the sameReimar Döffinger
prototype and also always call them with exactly those arguments. The previous way seems to have worked on all supported platforms, however it was not strictly valid C and would crash e.g. with a compiler that uses stdcall by default. Also avoids warnings if -Wstrict-prototypes is used. Originally committed as revision 23939 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-30mxfdec: Improve parsing of the PixelLayout itemTomas Härdin
Originally committed as revision 23898 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
2009-11-21Do D10 AES3 audio conversion in-place instead of using a large on-stack buffer.Reimar Döffinger
Originally committed as revision 20567 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-13MXF: simply ignore tracks that are invalid due to not having a valid SequenceReimar Döffinger
part instead of failing completely. This partly fixes issue 1470 (broken files created by BBC ingex recorder). Originally committed as revision 20221 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-30return AVERROR_EOFBaptiste Coudurier
Originally committed as revision 18993 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-15free Track and unset priv_data to avoid double free, fix memleakBaptiste Coudurier
Originally committed as revision 18836 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21protect realloc overflowBaptiste Coudurier
Originally committed as revision 18088 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-08reuse MXFCodecUL for data def and simplifyBaptiste Coudurier
Originally committed as revision 17042 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-08remove implicit header inclusions from mxf.hBaptiste Coudurier
Originally committed as revision 17041 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-08use lower case x and alternate format for hex in printfBaptiste Coudurier
Originally committed as revision 16494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-08print more debug information if enabled, including indexBaptiste Coudurier
Originally committed as revision 16493 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-09-18revert r14983, value is not sample aspect ratio, it is display aspect ratioBaptiste Coudurier
Originally committed as revision 15352 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-09print stream index in decimal not in hex, easier for debuggingBaptiste Coudurier
Originally committed as revision 15279 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni
bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-31put back mxf_essence_container_uls in demuxer as static constBaptiste Coudurier
Originally committed as revision 15083 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-27mxfdec: set sample_aspect_ratioAurelien Jacobs
Originally committed as revision 14983 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-20Remove useless #ifdef DEBUG (patch by Zhentan Feng).Zhentan Feng
Originally committed as revision 14853 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-18Factorize common code out of the mxf demuxer.Zhentan Feng
Patch by zhentan feng. Originally committed as revision 14826 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-07rename mxf.c to mxfdec.cBaptiste Coudurier
Originally committed as revision 14655 to svn://svn.ffmpeg.org/ffmpeg/trunk