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-11-28lavf: move ff_codec_get_tag() and ff_codec_get_id() definitions to internal.hJustin Ruggles
2012-10-29nutenc: verbosely report unsupported negative ptsLuca Barbato
Additionally use the correct error number.
2012-10-28nutenc: K&R formatting cosmeticsLuca Barbato
2012-10-16nut: export codec_tag provided by rawvideoLuca Barbato
Raw audio does not provide valid audio tags while rawvideo does. The fate refs have to be updated because it undoes the previous tag change.
2012-10-13nut: prioritize native tagsLuca Barbato
Use native tags instead of avi ones, simplifies a lot raw video codecs handling.
2012-10-01avformat: Remove non-compiling and/or silly commented-out printf/av_log ↵Diego Biurrun
statements
2012-09-27nutenc: const correctness for ff_put_v_trace/put_s_trace function argumentsDiego 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-30avformat: Drop pointless "format" from container long namesDiego Biurrun
2012-07-23lavf: use conditional notation for default codec in muxer declarations.Ronald S. Bultje
This removes the use of macro nesting in these code constructs, which makes it easier to parse in pre-processors.
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>
2011-11-30lavf: make av_set_pts_info private.Anton Khirnov
It's supposed to be called only from (de)muxers.
2011-10-20lavc: use avpriv_ prefix for some mpegaudio symbols used in lavf.Anton Khirnov
Specifically, ff_mpa_freq_tab, ff_mpa_bitrate_tab, ff_mpa_decode_header, ff_mpegaudio_decode_header.
2011-09-04nutenc: add namespace to the api facing functionsLuca Barbato
Rename write_{header,packet,trailer} to nut_write_{header,packet,trailer} in order to make easier debugging them.
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-05-04nutenc: check malloc return values.Ronald S. Bultje
2011-05-04nutenc: don't av_malloc(0).Ronald S. Bultje
2011-04-26Eliminate pointless '#if 1' statements without matching '#else'.Diego Biurrun
2011-04-04avio: avio_ prefix for url_close_dyn_bufAnton Khirnov
2011-04-04avio: avio_ prefix for url_open_dyn_bufAnton Khirnov
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-17nutenc: fix a memleakAnton Khirnov
This fixes a minor memory leak introduced in 073f8b1. 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-17nutenc: mux chapters.Anton Khirnov
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-03-04avio: add avio_tell macro as a replacement for url_ftellAnton 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.
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-09-10nutenc: fix unstable floating-point calculationsMåns Rullgård
Originally committed as revision 25095 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-09move ff_get_v_length and ff_put_v from nutenc.c to internal.h/aviobuf.cMichael Chinen
patch by Micheal Chinen < mchinen gmail > Originally committed as revision 24140 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-09rename get_length to ff_get_v_length and put_v to ff_put_vMichael Chinen
patch by Michael Chinen < mchinen gmail > Originally committed as revision 24139 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-03Make write_streamheader() log a message if there is no codec tagStefano Sabatini
defined. Originally committed as revision 23434 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-03Make write_streamheader() return a meaningful error code if no codecStefano Sabatini
tag is defined, rather than return -1. Originally committed as revision 23433 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-03Make write_header() and write_headers() return an error code in case ofStefano Sabatini
error. Originally committed as revision 23432 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-03Make write_streamheader() and write_headers() accept anStefano Sabatini
AVFormatContext * in input rather than a NUTContext *, which allows to log messages with av_log(). Originally committed as revision 23431 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
2010-05-22Move AVCodecTag from riff.h into internal.h.Francesco Lavra
Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 23250 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-28Fix NUT (de)muxer warnings:Vitor Sessak
CC libavformat/nutdec.o libavformat/nutdec.c: In function ‘read_seek’: libavformat/nutdec.c:862: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ libavformat/nutdec.c:871: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ libavformat/nutdec.c:879: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ CC libavformat/nutenc.o libavformat/nutenc.c: In function ‘write_packet’: libavformat/nutenc.c:680: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ Originally committed as revision 22707 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-03Plug memory leak in NUT muxer and demuxerVitor Sessak
Originally committed as revision 22174 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-01Revert r22119 and partially revert 22120.Vitor Sessak
Originally committed as revision 22135 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-28Plug some memory leaks in NUT muxer and demuxerVitor Sessak
Originally committed as revision 22120 to svn://svn.ffmpeg.org/ffmpeg/trunk