summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Merge audio and video bitstream filter options handling.Benoit Fouet2007-10-15
| | | | Originally committed as revision 10739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix mix-up of values in r10690 (deblocking for PAFF).Martin Zlomek2007-10-15
| | | | | | Patch by Martin Zlomek, martin d zlomek a email d cz Originally committed as revision 10738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for VP6 with huffman encoded blocksAurelien Jacobs2007-10-14
| | | | | | closes issue 104 Originally committed as revision 10737 to svn://svn.ffmpeg.org/ffmpeg/trunk
* moves fraps huffman decoder to its own file, making it more genericAurelien Jacobs2007-10-14
| | | | Originally committed as revision 10736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move asf_read_close() down to get rid of a forward declaration.Diego Biurrun2007-10-14
| | | | Originally committed as revision 10735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increment minor after r10709.Benoit Fouet2007-10-14
| | | | Originally committed as revision 10734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix rc4 header, #ifndef -> #defineReimar Döffinger2007-10-14
| | | | Originally committed as revision 10733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add multiple inclusion guards.Diego Biurrun2007-10-14
| | | | Originally committed as revision 10732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add standard license header.Diego Biurrun2007-10-14
| | | | Originally committed as revision 10731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently place comments in file header.Diego Biurrun2007-10-14
| | | | Originally committed as revision 10730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: sort()Diego Biurrun2007-10-14
| | | | Originally committed as revision 10729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP6A needs its Makefile rules tooAurelien Jacobs2007-10-14
| | | | Originally committed as revision 10728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix MJPEG decoder for AMV files.Vladimir Voroshilov2007-10-13
| | | | | | | | | Since decoding is doing from the end and aligned by 16 previous code worked correctly only when picture height was dividable by 16, otherwise it provides garbage in top lines and truncates bottom. New code adjusts data[] pointers taking in account alignment issue. Originally committed as revision 10727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prevent infinite loop and memcpy of negative amountsMichael Niedermayer2007-10-13
| | | | | | fixes issue194 Originally committed as revision 10726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simply buffer checks in vorbis_comment()Måns Rullgård2007-10-13
| | | | Originally committed as revision 10725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use bytestream_get_* in vorbis_comment()Måns Rullgård2007-10-13
| | | | Originally committed as revision 10724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RC4 encryption/decryption functionReimar Döffinger2007-10-13
| | | | Originally committed as revision 10723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorize code and add safety check to prevent memcpying negative amountsMichael Niedermayer2007-10-13
| | | | Originally committed as revision 10722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify tests for field macroblocksJeff Downs2007-10-13
| | | | | | patch by Jeff Downs, heydowns a borg d com Originally committed as revision 10721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent infinite loop when buffer holds SEQ_END_CODE only. Fix for r9870Stefan Lucke2007-10-13
| | | | | | | | | Patch by Stefan Lucke <stefan <at> lucke.in-berlin.de> Subject: API breakage by r9870 Date: 2007-10-05 11:06:47 GMT http://thread.gmane.org/gmane.comp.video.ffmpeg.devel/57467 Originally committed as revision 10720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memleakRamiro Polla2007-10-12
| | | | | | Closes issue 102 Originally committed as revision 10719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver needs ffm_muxer specifically, and rtsp_demuxer for rtsp_parse_line()Ramiro Polla2007-10-12
| | | | Originally committed as revision 10718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use single quotes to get rid of a bunch of backslash escapes.Diego Biurrun2007-10-12
| | | | Originally committed as revision 10717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently use $(FOO) instead of ${FOO} in Makefile variables.Diego Biurrun2007-10-12
| | | | Originally committed as revision 10716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: refill2() is not unused, it is used conditionally.Diego Biurrun2007-10-12
| | | | | | | Fix the preprocessor directives to enable refill2() only when the conditions under which it is used apply. Originally committed as revision 10715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Interlaced pictures (not just MBAFF) + spatial direct mode is notJeff Downs2007-10-12
| | | | | | | | | implemented. Patch by Jeff Downs, heydowns . borg @ com Original thread: Enable PAFF decoding, 2007-10-09 11:04 Originally committed as revision 10714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable unused code; fixes several gcc warnings:Diego Biurrun2007-10-12
| | | | | | | | | | | | cabac.h:112: warning: ‘put_cabac_static’ defined but not used cabac.h:158: warning: ‘put_cabac_terminate’ defined but not used cabac.h:186: warning: ‘put_cabac_u’ defined but not used cabac.h:221: warning: ‘put_cabac_ueg’ defined but not used cabac.h:273: warning: ‘refill2’ defined but not used cabac.h:811: warning: ‘get_cabac_u’ defined but not used cabac.h:827: warning: ‘get_cabac_ueg’ defined but not used Originally committed as revision 10713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable avpicture_deinterlace() for PIX_FMT_GRAY8.Andrea Gualano2007-10-11
| | | | | | Patch by Andrea Gualano, gualano T imavis O com Originally committed as revision 10712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix intended order of operations for 4 assert() checks.Shane2007-10-11
| | | | | | Patch by Shane, gnome42 T gmail O com Originally committed as revision 10711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Specify in documentation that avcodec_find_(en|de)coder* only searches forVille Skyttä2007-10-11
| | | | | | | registered entries Patch by Ville Skyttä <ville dot skytta at iki dot fi> Originally committed as revision 10710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add functionality to set the direction of a ByteIOContext buffer.Björn Axelsson2007-10-11
| | | | | | | | Patch by Björn Axelsson bjorn axelsson intinor se Original thread: [FFmpeg-devel] [PATCH] MMS protocol support patch 1 Date: 09/19/2007 05:51 PM Originally committed as revision 10709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* warning fixes:Diego Biurrun2007-10-11
| | | | | | | | | snow.c: In function ‘decode_header’: snow.c:3668: warning: unused variable ‘absum’ snow.c: In function ‘decode_init’: snow.c:4551: warning: unused variable ‘s’ Originally committed as revision 10708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check values more thoroughly in vorbis_header()Måns Rullgård2007-10-10
| | | | Originally committed as revision 10707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use bytestream_get_* in vorbis_header()Måns Rullgård2007-10-10
| | | | Originally committed as revision 10706 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix buffer overread with invalid Vorbis headerMåns Rullgård2007-10-10
| | | | Originally committed as revision 10705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove duplicate Vorbis comment tag handlingMåns Rullgård2007-10-10
| | | | Originally committed as revision 10704 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set pict->interlaced_frame if returned frame is MBAFF or PAFF.Carl Eugen Hoyos2007-10-10
| | | | Originally committed as revision 10703 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ogg seek function, instead use generic seek via read_timestamp functionReimar Döffinger2007-10-10
| | | | Originally committed as revision 10702 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a read_timestamp function to ogg demuxerReimar Döffinger2007-10-10
| | | | Originally committed as revision 10701 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix incorrect check for abs_diff_pic_num overflowJeff Downs2007-10-09
| | | | | | patch by Jeff Downs, heydowns a borg d com Originally committed as revision 10700 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow to override zlib compression level in PNG encoder via ↵Reimar Döffinger2007-10-09
| | | | | | avctx->compression_level Originally committed as revision 10699 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentAndreas Öman2007-10-09
| | | | Originally committed as revision 10698 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better lambda search methodBaptiste Coudurier2007-10-09
| | | | Originally committed as revision 10697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable PAFF decodingCarl Eugen Hoyos2007-10-09
| | | | Originally committed as revision 10696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oops... mpegvideo_enc also depends on motion_est and ratecontrolAurelien Jacobs2007-10-09
| | | | Originally committed as revision 10695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dnxhdenc depends on mpegvideo_enc (usage of ff_convert_matrix)Aurelien Jacobs2007-10-09
| | | | Originally committed as revision 10694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2007-10-09
| | | | Originally committed as revision 10693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid generating invalid filesMichael Niedermayer2007-10-09
| | | | | | fixes issue213 Originally committed as revision 10692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Manage Picture buffers for fields as well as frames. Pair complementary ↵Jeff Downs2007-10-08
| | | | | | | | | | | | | fields into one MPV Picture. Part of PAFF implementation. patch by Jeff Downs, heydowns a borg d com original thread: Subject: [FFmpeg-devel] [PATCH] Implement PAFF in H.264 Date: 18/09/07 20:30 Originally committed as revision 10691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix deblocking for PAFF contentMartin Zlomek2007-10-08
| | | | | | Patch by Martin Zlomek, martin d zlomek a email d cz Originally committed as revision 10690 to svn://svn.ffmpeg.org/ffmpeg/trunk