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-04Do not include mathematics.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-04-28nut format: support PIX_FMT_BGR48LE and PIX_FMT_BGR48BEPeter Ross
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-06-06Add support to B4BY and R4BY NUT codec tags added in NUT r672.Stefano Sabatini
Originally committed as revision 23508 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-06bgr/rgb444 for nutMichael Niedermayer
Originally committed as revision 23504 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-27Add support for the newly added Nut codec tags (added in Nut r669):Stefano Sabatini
Y1[00][16], [16][00]1Y, Y3[11][16], [16][11]3Y, Y3[10][16], [16][10]3Y, Y3[00][16], [16][00]3Y, Y4[11][ 8], Y2[00][ 8]. Originally committed as revision 23342 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-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-24Fix warning:Vitor Sessak
libavformat/nut.c: In function ‘ff_nut_free_sp’: libavformat/nut.c:80: warning: passing argument 4 of ‘av_tree_enumerate’ from incompatible pointer type ./libavutil/tree.h:92: note: expected ‘int (*)(void *, void *)’ but argument is of type ‘void (*)(void *, void *)’ Originally committed as revision 22659 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-02-24Introduce metadata conversion table for NUT muxer and demuxer.Anton Khirnov
Patch by Anton Khirnov (wyskas, do no evil mail) Thread "[PATCH] nut metadata conversion table" Originally committed as revision 22015 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-11remove _t for POSIX compatibility.Michael Niedermayer
Originally committed as revision 16057 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-09Use full path for #includes from another directory.Diego Biurrun
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-07Add 'disposition' bitfield to AVStream and use it for both muxing and demuxingEvgeniy Stepanov
of matroska and nut. Originally committed as revision 12358 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-05Subtitle support. (untested)Michael Niedermayer
Originally committed as revision 12330 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-04ff_nut_reset_ts() expected to get 'ts*time_base_count', but muxer onlyOded Shimon
gave it 'ts'. Fixed by changing ff_nut_reset_ts() and demuxer params Originally committed as revision 11851 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-04Move *malloc() out of tree.c, that way the code can be used withMichael Niedermayer
flat arrays which have lower overhead than millions of mallocd() elements. Originally committed as revision 11399 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-05Add some parentheses to clarify operator precedence, fixes the warnings:Diego Biurrun
nut.c: In function 'ff_nut_sp_pos_cmp': nut.c:43: warning: suggest parentheses around + or - inside shift nut.c:43: warning: suggest parentheses around + or - inside shift nut.c: In function 'ff_nut_sp_pts_cmp': nut.c:47: warning: suggest parentheses around + or - inside shift nut.c:47: warning: suggest parentheses around + or - inside shift Originally committed as revision 10926 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-30rename av_crc04C11DB7_update to ff_crc04C11DB7_update and move it to ↵Baptiste Coudurier
aviobuf.c so it can be reused by other (de)muxers Originally committed as revision 10873 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12Ensure av_tree_insert() is defined before using it.Carl Eugen Hoyos
Patch by Carl Eugen Hoyos cehoyos _at_ ag.or.at Originally committed as revision 10083 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-10move syncpoint cache related stuff to common fileMichael Niedermayer
Originally committed as revision 10038 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-09move lsb2full to common fileMichael Niedermayer
Originally committed as revision 10025 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-09move crc wrapper to slightly better spotMichael Niedermayer
Originally committed as revision 10022 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-09move syncpoint timestamp resetting code to a common fileMichael Niedermayer
Originally committed as revision 10020 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-09remove old unused nut (de)muxerMichael Niedermayer
Originally committed as revision 10018 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-19Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).Panagiotis Issaris
Originally committed as revision 9759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05URL update, move comment to a better place.Diego Biurrun
Originally committed as revision 9476 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12misc spelling fixesDiego Biurrun
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-07variable renaming: mp3lame --> libmp3lameDiego Biurrun
Originally committed as revision 7417 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-02Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.Steve L'Homme
patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-18Fix license header error notice by Steve LHomme.Diego Biurrun
Originally committed as revision 6730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-03remove redundant declarationsMåns Rullgård
Originally committed as revision 6153 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-20fix regression failure after adler simplificationMichael Niedermayer
Originally committed as revision 5803 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-14move adler32 to libavutilMåns Rullgård
Originally committed as revision 5731 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-12move common stuff from avienc.c and wav.c to new file riff.cMåns Rullgård
Originally committed as revision 5720 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-11allow individual selection of muxers and demuxersMåns Rullgård
Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-10give AVInput/OutputFormat structs consistent namesMåns Rullgård
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-06-21Remove unused variable, patch by Stefan Huehner stefan__at__huehner__dot__org.Stefan Huehner
Originally committed as revision 5506 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-06-16free codec extradata in av_close_input_fileMåns Rullgård
Originally committed as revision 5484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-04-23Disable lavf NUT until it is synced to specOded Shimon
Originally committed as revision 5312 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-03-01add size to AVIndexMichael Niedermayer
Originally committed as revision 5083 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-20Properly #ifdef muxer-specific parts.Gildas Bazin
Taken from a patch by Gildas Bazin < gbazin -- @@ -- altern -- . -- org > Originally committed as revision 4869 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-22COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun
Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-12use PRIxN, %zd, %td formats where neededMåns Rullgård
Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-09-23Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERSDiego Biurrun
in libavformat to allow building (de)coders and (de)muxers independently at some point + support for this option in configure. Originally committed as revision 4611 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-09-11checksum doesnt cover the forward_ptr anymoreMichael Niedermayer
Originally committed as revision 4579 to svn://svn.ffmpeg.org/ffmpeg/trunk