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
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-02RA144: work around gcc bug/oddity on ARMMåns Rullgård
This should not make any difference, yet some gcc versions on ARM produce incorrect output without this fix. Approved by Vitor. Originally committed as revision 17698 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-01Reindent after last commitVitor Sessak
Originally committed as revision 17678 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-01Do not read uninitialized buffer, no matter if it will be multiplied byVitor Sessak
zero later. This should fix some valgrind warnings and hopefully FATE ra144 test on ARM. Originally committed as revision 17677 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-25Split off celp_filters.[ch] from acelp_filters.[ch] for the QCELP decoder.Kenan Gillet
patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15680 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-11misc spelling/wording/grammar fixesDiego Biurrun
Originally committed as revision 15296 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Normalize triplets in gain_val_tab[][] so gain_exp_tab[] can be just anVitor Sessak
one-dimensional array. Originally committed as revision 15273 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Pass directly variable 'a' to interp instead of evaluating it from num_blocksVitor Sessak
Originally committed as revision 15269 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Simplify if() in copy_and_dup()Vitor Sessak
Originally committed as revision 15268 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Add av_cold attribute to decode_init()Vitor Sessak
Originally committed as revision 15267 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Cosmetics: Make the two additional units in size more clearVitor Sessak
Originally committed as revision 15266 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-06Test a var for overflow just after it is setVitor Sessak
Originally committed as revision 15223 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-06Remove useless parentheses.Vitor Sessak
Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-07Cosmetics: rename loop counters in eval_refl()Vitor Sessak
Originally committed as revision 14653 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-07Simplify eval_refl(): do not store a buffer value in a var when the buffer ↵Vitor Sessak
could be used directly Originally committed as revision 14652 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-07Simplify eval_refl(): s/b == 0/!b/Vitor Sessak
Originally committed as revision 14651 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-07Simplify range checking in eval_refl(). Before theVitor Sessak
condition b == 0 could never be true, because it would have already been caught in the previous ifs. Also the condition b == 0x1000 could never be true (it would triggered the return). Originally committed as revision 14650 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-07Cosmetics: reindentVitor Sessak
Originally committed as revision 14649 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-07Simplify do_output_subblock(): Remove a unneeded memcpyVitor Sessak
Originally committed as revision 14648 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-06Simplify eval_refl(): return directly when needed instead of storing the ↵Vitor Sessak
return value in a variable Originally committed as revision 14640 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-06Simplify rms(): merge a few operations in the same statementVitor Sessak
Originally committed as revision 14639 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-06Cosmetical simplification in t_sqrt()Vitor Sessak
Originally committed as revision 14638 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-06Check available size before writing in decode_frame()Vitor Sessak
Originally committed as revision 14637 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-31Modify all codecs to report their supported input and output sample format(s).Peter Ross
Originally committed as revision 14482 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-29Cosmetics: rename loop counter vars to i,jVitor Sessak
Originally committed as revision 14467 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-30Make ff_acelp_lp_synthesis_filter() receives a pointer to the actual filter ↵Vitor Sessak
coefficients and not the pointer minus one Originally committed as revision 14031 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-29Update copyrightVitor Sessak
Originally committed as revision 14030 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-29Use ff_acelp_lp_synthesis_filter() instead of duplicating itVitor Sessak
Originally committed as revision 14029 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-29Doxy commentVitor Sessak
Originally committed as revision 14026 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25Simplify interp()Vitor Sessak
Originally committed as revision 13953 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25More cosmeticsVitor Sessak
Originally committed as revision 13952 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25CosmeticsVitor Sessak
Originally committed as revision 13951 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Use lpc_coef[2] instead of lpc_coef and lpc_coef_oldVitor Sessak
Originally committed as revision 13946 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Remove unused entries from lpc_refl_cb*Vitor Sessak
Originally committed as revision 13945 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Remove unused entries from energy_tabVitor Sessak
Originally committed as revision 13944 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Merge the >> 4 calculation of cb1_base in the tableVitor Sessak
Originally committed as revision 13935 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Consistency: make the output buffer the first argument of functionsVitor Sessak
Originally committed as revision 13934 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Use sizeof() intead of hardcoding the valuesVitor Sessak
Originally committed as revision 13933 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24SimplifyVitor Sessak
Originally committed as revision 13932 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24SimplifyVitor Sessak
Originally committed as revision 13931 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24It makes more sense to return 1 here in case of overflow.Vitor Sessak
Originally committed as revision 13930 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Cosmetics: indentVitor Sessak
Originally committed as revision 13929 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Remove unneeded checkVitor Sessak
Originally committed as revision 13928 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24rescale_rms() should use unsigned intsVitor Sessak
Originally committed as revision 13927 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Move factor multiplication out of irms()Vitor Sessak
Originally committed as revision 13926 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24This should be signedVitor Sessak
Originally committed as revision 13925 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24More comments removal/fixesVitor Sessak
Originally committed as revision 13924 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Remove useless commentVitor Sessak
Originally committed as revision 13923 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24More comments improvementVitor Sessak
Originally committed as revision 13922 to svn://svn.ffmpeg.org/ffmpeg/trunk