summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Document AVFilterInOut fields.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25704 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend documentation for parse_filter().Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25703 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix date in latest APIchanges entry.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25702 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump lavfi minor and add APIchanges entry after the rename ofStefano Sabatini2010-11-07
| | | | | | AVFilterInOut.filter. Originally committed as revision 25701 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename AVFilterInOut field filter to filter_ctx, more semantically correct.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25700 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfilter_graph_parse() always return meaningful error codes.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25699 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make parse_outputs() always return meaningful error codes.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25698 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing memory check in parse_inputs(), and fix possible (yet very ↵Stefano Sabatini2010-11-07
| | | | | | unlikely) crash. Originally committed as revision 25697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make parse_inputs() return AVERROR(EINVAL) rather than -1 in case theStefano Sabatini2010-11-07
| | | | | | link label parsed by parse_link_name() is invalid. Originally committed as revision 25696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing check in link_filter_inouts(), and fix possible (yet very ↵Stefano Sabatini2010-11-07
| | | | | | unlikely) crash. Originally committed as revision 25695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename the variable filter to filt_ctx in link_filter_inouts, as the ↵Stefano Sabatini2010-11-07
| | | | | | | | variable denotes a filter context. Less confusing. Originally committed as revision 25694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make link_filter_inouts() return meaningful error codes.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the signature of parse_filter() to make it return an error code.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the signature of create_filter() to make it return an error code.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make x11grab cursor drawing suck lessJason Garrett-Glaser2010-11-07
| | | | | | | | | | | | | This new version: 1. Works on 24-bit and 32-bit input, not just 32-bit. 2. Doesn't try to run on 16-bit or 8-bit, instead of outright crashing. 3. Does proper alpha-blending, so cursor shadows look correct. 4. Doesn't swap R and B. Mostly fixes issue 1997. Fixes issue 2056. Originally committed as revision 25690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize / simplify avcodec_get_pix_fmt_name() check.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_pix_fmt_descriptors information in avcodec_pix_fmt_string().Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avpicture_fill() return a meaningful error code.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove alpha information from avcodec_pix_fmt_string(), as thatStefano Sabatini2010-11-07
| | | | | | information does not belong to the pixel format. Originally committed as revision 25686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aaclatm: Eliminate dummy packets due to muxlength calculation.Alex Converse2010-11-07
| | | | | | | | | | Muxlength does not include the 3 bytes of AudioSyncStream() before the AudioMuxElement(). If these three bytes are not accounted for the last three bytes of the LATM packet are sent back to the decoder again. Fixes issue244/mux2.share.ts Originally committed as revision 25685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Set the real_setup pointer properly, avoid out of bounds memory accessesYuriy Kaminskiy2010-11-06
| | | | | | | | | | This fixes a regression since svn rev 24752, where the real_setup pointer was set incorrectly. The arithmetic with the real_setup_cache pointer is in units of enum AVDiscard, so the sizeof multiplication should be removed. Patch by Yuriy Kaminskiy, yumkam at mail dot ru. Originally committed as revision 25684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation.Reimar Döffinger2010-11-06
| | | | Originally committed as revision 25683 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve PGS parsing: the "state" field is not relevant to us,Reimar Döffinger2010-11-06
| | | | | | | | | the object number is, it determines whether we should continue parsing the presentation description and whether we should clear the subtitles on the next display command. Based on patch by Mark Goodman [mark goodman gmail com] Originally committed as revision 25682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* try to give TrueSpeech decoder tables more sensible namesKostya Shishkov2010-11-06
| | | | Originally committed as revision 25681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add my (compn) fingerprint to svn write list in maintainers fileBen Littler2010-11-05
| | | | Originally committed as revision 25680 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement get_preset_file() in cmdutils.h and use it to factorize codeStefano Sabatini2010-11-04
| | | | | | from ffmpeg.c and ffserver.c. Originally committed as revision 25679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix FFv1 decoder buffer releasing.Stefano Sabatini2010-11-04
| | | | | | | Previously it was releasing the buffer which was returned to the user, which was resulting in a crash in case of direct rendering. Originally committed as revision 25678 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add test for cropping of interlaced H.264.Reimar Döffinger2010-11-04
| | | | Originally committed as revision 25677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: consume the audio specific config during LATM parsingJanne Grunau2010-11-04
| | | | | | | Spotted by Alex after Carl Eugen found errors some samples. There no errors or noticeable artifacts in the samples I used during development. Originally committed as revision 25676 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix off-by-one error in APIchanges file.Stefano Sabatini2010-11-04
| | | | Originally committed as revision 25675 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename avfilter_graph_destroy() to avfilter_graph_free().Stefano Sabatini2010-11-04
| | | | | | | | The new name is shorter and more consistent with the rest of the API. This change breaks libavfilter API/ABI. Originally committed as revision 25674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avfilter_graph_alloc().Stefano Sabatini2010-11-04
| | | | Originally committed as revision 25673 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Amend avfilter_graph_parse() documentation for the return code, makeStefano Sabatini2010-11-04
| | | | | | it more generic. Originally committed as revision 25672 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove two instances of AVERROR(ff_neterrno()), because ff_neterrno() itselfRonald S. Bultje2010-11-04
| | | | | | already does AVERROR(). Originally committed as revision 25671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence icc warning about unsupported option -Wno-parenthesesCarl Eugen Hoyos2010-11-04
| | | | Originally committed as revision 25670 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H.264 decode: support cropping up to 28 pixels in interlaced mode.Reimar Döffinger2010-11-03
| | | | | | | | Contrary to progressive, just being able to crop up to 14/15 pixels is not enough to encode all supported resolutions, and the new behaviour is also consistent with e.g. MPEG-2 etc. Originally committed as revision 25669 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove usage of deprecated libavcodec/audioconvert.h functions.Stefano Sabatini2010-11-03
| | | | Originally committed as revision 25668 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 16kHz Mono NellyMoser in flv.Thierry Foucu2010-11-03
| | | | | | Patch by Thierry Foucu, tfoucu gmail Originally committed as revision 25667 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement isnan() function evaluation.Stefano Sabatini2010-11-03
| | | | Originally committed as revision 25666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add eval.texi file.Stefano Sabatini2010-11-03
| | | | Originally committed as revision 25665 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update 24 bpp TM1 reference for decoder fixes.Reimar Döffinger2010-11-03
| | | | Originally committed as revision 25664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix aspect for 24bpp TM1 samples.Reimar Döffinger2010-11-03
| | | | Originally committed as revision 25663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix decoding of 24 bpp TM1 (except for aspect).Reimar Döffinger2010-11-03
| | | | Originally committed as revision 25662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, calculate mb_change_bits_row_size from the update width.Reimar Döffinger2010-11-03
| | | | Originally committed as revision 25661 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support mid-stream resolution/format changes for TM1.Reimar Döffinger2010-11-03
| | | | | | This makes it easier to fix playback of 24 bit formats. Originally committed as revision 25660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: skip invalid tags with no TagNameAnton Khirnov2010-11-03
| | | | | | fixes segfault in issue 2328 Originally committed as revision 25659 to svn://svn.ffmpeg.org/ffmpeg/trunk
* changelog: mention that ffmpeg is now win64-friendlyRamiro Polla2010-11-02
| | | | Originally committed as revision 25658 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1/PHIl: swap again settb/setpts, fix alphabetical order.Stefano Sabatini2010-11-02
| | | | Originally committed as revision 25657 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move settb docs after setpts docs, fix alphabetical order.Stefano Sabatini2010-11-02
| | | | Originally committed as revision 25656 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add setpts filter, ported from the libavfilter soc repo.Stefano Sabatini2010-11-02
| | | | Originally committed as revision 25655 to svn://svn.ffmpeg.org/ffmpeg/trunk