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
2013-01-15nutdec: Always return a value from nut_read_timestamp()Diego Biurrun
The function is a callback that is called by ff_gen_search with a constant stream index. Avoid a false positive on older gcc version. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2012-11-28lavf: move ff_codec_get_tag() and ff_codec_get_id() definitions to internal.hJustin Ruggles
2012-10-29nut: support textual dataLuca Barbato
Plain text (utf8 encoded) data can be muxed and demuxed in nut.
2012-10-13nut: support pcm codecs not mapped in aviLuca Barbato
The native tags will be used when available.
2012-10-13nut: prioritize native tagsLuca Barbato
Use native tags instead of avi ones, simplifies a lot raw video codecs handling.
2012-10-02nut: add do {} while (0) to GET_VLuca Barbato
Make it consistent with the other function-like macros.
2012-09-27nutdec: Remove unused and broken debug function stubDiego Biurrun
2012-09-26nutdec: const correctness for get_v_trace/get_s_trace function argumentsDiego Biurrun
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-07-30avformat: Drop pointless "format" from container long namesDiego Biurrun
2012-04-19nutdec: add malloc check and fix const to non-const conversion warningsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-04-10Drop some pointless #ifdefs.Diego Biurrun
The files are only compiled if the #ifdef conditions are met.
2012-04-10nutdec: K&R formatting cosmeticsAsen Lekov
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-04-06cosmetics: Align muxer/demuxer declarationsMartin Storsjö
Also add missing trailing commas, break long codec_tag lines and add spaces in codec_tag declarations. Signed-off-by: Martin Storsjö <martin@martin.st>
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-11-06Replace all usage of strcasecmp/strncasecmpReimar Döffinger
All current usages of it are incompatible with localization. For example strcasecmp("i", "I") != 0 is possible, but would break many of the places where it is used. Instead use our own implementations that always treat the data as ASCII. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-10-28lavf: make some seeking functions privateAnton Khirnov
Specifically av_update_cur_dts(), av_seek_frame_binary() and av_gen_search(). They are not supposed to be called outside lavf.
2011-10-20lavf: use avpriv_ prefix for ff_new_chapter().Anton Khirnov
It's used in libavdevice.
2011-10-19lavf: replace av_new_stream->avformat_new_stream part II.Anton Khirnov
Manual replacements are done in this commit. In many cases, the id is some constant made up number (e.g. 0 for video and 1 for audio), which is then not used in the demuxer for anything. Those ids are removed.
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-08Remove all uses of now deprecated metadata functions.Anton Khirnov
2011-06-02nutdec: remove unused variableMans Rullgard
2011-04-19lavf: remove FF_API_MAX_STREAMS cruftAnton Khirnov
2011-04-04avio: introduce an AVIOContext.seekable fieldAnton Khirnov
Use it instead of url_is_streamed and AVIOContext.is_streamed.
2011-03-30avio: make get_checksum() internal.Anton Khirnov
2011-03-30avio: make init_checksum() internal.Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-17lavf: move ff_get_v from avio.h to avio_internal.hAnton Khirnov
And rename it to ffio_read_varlen. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.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-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-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-12Use AVERROR_INVALIDDATA rather than -1 for nutdec error codes.Stefano Sabatini
Originally committed as revision 26321 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-24nutdec: when parsing info packet, set metadata var only onceAnton Khirnov
Originally committed as revision 25558 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15Export metadata in the generic format. Deprecate old conversion API.Anton Khirnov
patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25493 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-19rename LAVF_API_* defines to FF_API_* to clarify that it is not public APIAurelien Jacobs
Originally committed as revision 24825 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-17add LAVF_API_MAX_STREAMS define to disable the deprecated MAX_STREAMS APIAurelien Jacobs
Originally committed as revision 24817 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-10get rid of MAX_STREAMS limit in nutdecAurelien Jacobs
Originally committed as revision 24755 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-11Add av_ prefix to bswap macrosMåns Rullgård
Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-11bswap: change ME to NE in macro namesMåns Rullgård
Other parts of FFmpeg use NE (native endian) rather than ME (machine). This makes it consistent. Originally committed as revision 24169 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-03Fix warning "passing argument from incompatible pointer type".Eli Friedman
Patch by Eli Friedman, eli d friedman a gmail Originally committed as revision 24020 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-23Make the nut decoder read the ff_nut_video_tags to detect codec id ofStefano Sabatini
the input file. This is required as Nut codec tags are not contained in ff_codec_bmp_tags. Originally committed as revision 23260 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-23Define ff_nut_video_tags and make Nut muxer and demuxer set it inStefano Sabatini
codec_tag. Originally committed as revision 23259 to svn://svn.ffmpeg.org/ffmpeg/trunk