summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* End startcode prefix search at the end of a AVC unit.Michael Niedermayer2009-12-09
| | | | | | Fixes issue1550. Originally committed as revision 20784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r20775, because equivalent code has been committed to x264 insteadLoren Merritt2009-12-09
| | | | Originally committed as revision 20783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Minor version bump for mbtree addition.Jason Garrett-Glaser2009-12-09
| | | | Originally committed as revision 20782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support AVI1 and AVI2 in avi as MJPEG.Carl Eugen Hoyos2009-12-08
| | | | | | Fixes issue 1602. Originally committed as revision 20781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mention patcheck.Zhihang Wang2009-12-08
| | | | | | Patch by Zhihang Wang, zhihang D wang A gmail Originally committed as revision 20780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make parse_key_value_pair() print an error message if a key is notStefano Sabatini2009-12-08
| | | | | | found in the context. Originally committed as revision 20779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use an unsigned int to contain all the color values of the expressionsStefano Sabatini2009-12-08
| | | | | | | | of the type 0xRRGBBAA parsed by av_parse_color(), using a simple int was resulting in unexpected results as the most significant bit was used for the sign. Originally committed as revision 20778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix a crash in ape decoding on x86_32 sse2Loren Merritt2009-12-08
| | | | Originally committed as revision 20777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder is no longer GPL; update FAQDaniel Verkamp2009-12-08
| | | | Originally committed as revision 20776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Boolify options passed to x264.Jason Garrett-Glaser2009-12-08
| | | | Originally committed as revision 20775 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MBtree support for libx264Erik Slagter2009-12-08
| | | | | | Patch by Erik Slagter Originally committed as revision 20774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aac: Set sample rate in avctx from ADTS header (if not already set by someAndreas Öman2009-12-08
| | | | | | other means) Originally committed as revision 20773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce warnings about too few consumed bytes to debug level.Michael Niedermayer2009-12-08
| | | | | | Fixes issue1061. Originally committed as revision 20772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix alpha plane flipping for the yuva420p and similar pixel formats.Stefano Sabatini2009-12-08
| | | | Originally committed as revision 20771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do as the comment says and signal an error.Michael Niedermayer2009-12-08
| | | | Originally committed as revision 20770 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l bug, use av_fast_malloc() instead if av_malloc() for allocating audioMichael Niedermayer2009-12-08
| | | | | | | buffers. This and the previous revision fix a heap overflow. Originally committed as revision 20769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to allocate audio buffer sizes depending on the number of input bytes.Michael Niedermayer2009-12-08
| | | | | | Fixes issue1167. Originally committed as revision 20768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check that the buffer size speified to avcodec_encode_audio() is not larger ↵Michael Niedermayer2009-12-08
| | | | | | than the actual size. Originally committed as revision 20767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not assume that av_get_bits_per_sample() is a multiple of 8.Michael Niedermayer2009-12-08
| | | | Originally committed as revision 20766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raise threshold of h263 probe by 1 to avoid misdetection.Michael Niedermayer2009-12-08
| | | | | | Fixes issue 1588. Originally committed as revision 20765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add out commented av_log to debug h263_probe.Michael Niedermayer2009-12-08
| | | | Originally committed as revision 20764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also print the number of invalid packets in the debug output.Michael Niedermayer2009-12-08
| | | | Originally committed as revision 20763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flip the comparission direction of vid+audio+priv1 and pspack, it appears to ↵Michael Niedermayer2009-12-08
| | | | | | | | | have been wrong. Fixes issue1571. Originally committed as revision 20762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that compilation fails if functions like ff_put_string are used in ↵Reimar Döffinger2009-12-07
| | | | | | | | code that selected a bitstream writer for which they do not work. Originally committed as revision 20761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of audio_out2, it seems unneeded.Michael Niedermayer2009-12-07
| | | | Originally committed as revision 20760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update seek.regression.ref. This is due to r20758.Jai Menon2009-12-07
| | | | Originally committed as revision 20759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AU : demuxed packet size should be sample size aligned.Jai Menon2009-12-07
| | | | | | Fixes issue 1593. Originally committed as revision 20758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the differences between the two asm fragments in initMMX2HScaler().Ramiro Polla2009-12-07
| | | | Originally committed as revision 29978 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Print error messages on errors.Michael Niedermayer2009-12-07
| | | | Originally committed as revision 20757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix apparent 10l typos introduced in r8627.Michael Niedermayer2009-12-06
| | | | | | | These typos moved the exponent pointer too far ahead. Fixes issue1055. Originally committed as revision 20756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Start using intermediate buffers at index 0.Ramiro Polla2009-12-06
| | | | | | | These index variables are incremented before each use, so they should be initialized to -1. Originally committed as revision 29977 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Reindent after the last commit.Stefano Sabatini2009-12-06
| | | | Originally committed as revision 20755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix slicify when the slice_direction is negative, make it send slicesStefano Sabatini2009-12-06
| | | | | | from the bottom to the top one. Originally committed as revision 20754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update documentation for r20435 (which added the -fpre option).Ramiro Polla2009-12-06
| | | | Originally committed as revision 20753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Fix indentation after r20751.Carl Eugen Hoyos2009-12-06
| | | | Originally committed as revision 20752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplified deblocking checks.Jason Garrett-Glaser2009-12-06
| | | | | | Patch by Dark Shikari Originally committed as revision 20751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Faster checks in reverse_dc_prediction.Jason Garrett-Glaser2009-12-06
| | | | | | Patch by Dark Shikari Originally committed as revision 20750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check transform==15 first, since it's more common than 13.Jason Garrett-Glaser2009-12-06
| | | | | | Patch by Dark Shikari Originally committed as revision 20749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r20747: It mixed functional and cosmetical changes.Carl Eugen Hoyos2009-12-06
| | | | Originally committed as revision 20748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Various VP3 optimizations.Jason Garrett-Glaser2009-12-06
| | | | | | | | Faster checks in reverse_dc_prediction. Simplified deblocking checks. Check transform==15 first, since it's more common than 13. Originally committed as revision 20747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: insert space between codeword and left parenthesisKostya Shishkov2009-12-06
| | | | Originally committed as revision 20746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not send invokes to RTMP server if we are not connected to it.Sergiy2009-12-06
| | | | | | Patch by Sergiy (server.connect("gmail.com").selectAddress("piratfm")) Originally committed as revision 20745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calls to url_fseek should have their return value checked inSean Soria2009-12-06
| | | | | | | | | | av_seek_frame_binary, just as they do in av_seek_frame_generic. Otherwise, function may return success even though url_fseek reported failure. Patch by Sean Soria, first.last at gmail Originally committed as revision 20744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* slightly faster scalarproduct_and_madd_int16_ssse3 on penryn, no change on ↵Loren Merritt2009-12-05
| | | | | | conroe Originally committed as revision 20743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* r20739 broke compilation on systems without yasmLoren Merritt2009-12-05
| | | | Originally committed as revision 20742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update frame_width and frame_height based on the lowres value.Jai Menon2009-12-05
| | | | | | Fixes issues 1387, 1097 and probably some other lowres related problems. Originally committed as revision 20741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 'const' attribute to the last_asked_format variable, fix aStefano Sabatini2009-12-05
| | | | | | compiler warning. Originally committed as revision 20740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* refactor and optimize scalarproductLoren Merritt2009-12-05
| | | | | | | | 29-105% faster apply_filter, 6-90% faster ape decoding on core2 (Any x86 other than core2 probably gets much less, since this is mostly due to ssse3 cachesplit avoidance and I haven't written the full gamut of other cachesplit modes.) 9-123% faster ape decoding on G4. Originally committed as revision 20739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation with runtime cpu detection.Ramiro Polla2009-12-05
| | | | | | All functions in swscale_template.c should be declared with the RENAME macro. Originally committed as revision 29976 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Cosmetics: Reindent after r20679.Carl Eugen Hoyos2009-12-05
| | | | Originally committed as revision 20738 to svn://svn.ffmpeg.org/ffmpeg/trunk