summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 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
* Add av_get_bits_per_sample_fmt() to libavcore/samplefmt.h andStefano Sabatini2010-11-02
| | | | | | deprecate av_get_bits_per_sample_format(). Originally committed as revision 25654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement functions:Stefano Sabatini2010-11-02
| | | | | | | | | | | | | av_get_sample_fmt_name() av_get_sample_fmt() av_get_sample_fmt_string() in libavcore, and deprecate the corresponding libavcodec/audioconvert.h functions: avcodec_get_sample_fmt_name() avcodec_get_sample_fmt() avcodec_sample_fmt_string() Originally committed as revision 25653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move sample format definitions from libavcodec to libavcore.Stefano Sabatini2010-11-02
| | | | Originally committed as revision 25652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* http: Handle 301/307 redirect requests, tooMike Edenfield2010-11-02
| | | | | | Patch by Mike Edenfield, kutulu at kutulu dot org Originally committed as revision 25651 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow mono encoding with LAME.Thierry Foucu2010-11-02
| | | | | | Patch by Thierry Foucu, tfoucu gmail Originally committed as revision 25650 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix timestamp handling in more filters after the change which set theStefano Sabatini2010-11-02
| | | | | | timebase in the filter link. Originally committed as revision 25649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the blackframe filter print the time, in addition to theStefano Sabatini2010-11-02
| | | | | | timestamp, for each detected black frame. Originally committed as revision 25648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the cropdetect filter print the time for each frame, in additionStefano Sabatini2010-11-02
| | | | | | to the timestamp. Originally committed as revision 25647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix timestamp computation when the timebase changes during filtering.Stefano Sabatini2010-11-02
| | | | | | | | The timestamps for all the buffered frames are scaled against AV_TIME_BASE_Q, and need to be scaled back to AV_TIME_BASE_Q when they are extracted from the filterchain. Originally committed as revision 25646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix crop->var_values[VAR_T] computation in the crop filter.Stefano Sabatini2010-11-02
| | | | Originally committed as revision 25645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: change type of data in decode_audio_specific_config parametersJanne Grunau2010-11-02
| | | | | | AVCodecContext.extradata is uint8_t*, silence a warning Originally committed as revision 25644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegts: support LATM syntaxJanne Grunau2010-11-02
| | | | Originally committed as revision 25643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add single stream LATM/LOAS decoderJanne Grunau2010-11-02
| | | | | | | The decoder is just a wrapper around the AAC decoder. based on patch by Paul Kendall { paul <ät> kcbbs gen nz } Originally committed as revision 25642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: pass avctx as logging context for decode_audio_specific_configJanne Grunau2010-11-02
| | | | | | | | Use avctx in all called functions. This allows passing a NULL AACContext for LATM since the AACContext is only used in output_configure() which is skipped for LATM parsing. Originally committed as revision 25641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: refactor the actual aac decoding code into its own functionJanne Grunau2010-11-02
| | | | | | | | aac_decode_frame() remains as AVPacket handling a wrapper. The actual decoding function takes a GetBitContext as input and will be used be the AAC LATM decoder to avoid copying the unaligned AAC bitstream. Originally committed as revision 25640 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: return consumed bits in decode_audio_specific_configJanne Grunau2010-11-02
| | | | Originally committed as revision 25639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec: add MPEG4AudioConfig as parameter for decode_audio_specific_configJanne Grunau2010-11-02
| | | | | | | This will be used by the latm decoder to avoid AACContext changes during audio specific config parsing. Originally committed as revision 25638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg.c: reindentAnton Khirnov2010-11-02
| | | | Originally committed as revision 25637 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg.c: don't autocopy stream/chapter metadata if manual mapping is specifiedAnton Khirnov2010-11-02
| | | | Originally committed as revision 25636 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg.c: extend map_meta_data to allow advanced mappingsAnton Khirnov2010-11-02
| | | | | | i.e. to/from streams/chapters/programs. Originally committed as revision 25635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dnxhd_mmx: prefer xmm registers below xmm6 when they are availableRamiro Polla2010-11-02
| | | | Originally committed as revision 25634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix possibly exploitable out of buffer writes in msrle_decode_pal4().Michael Niedermayer2010-11-02
| | | | | | This fix is minimalistic, that function should be cleaned up by someone. Originally committed as revision 25633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix possibly exploitable buffer overrun in msrle_decode_8_16_24_32().Michael Niedermayer2010-11-02
| | | | | | Issue has been reported to me by Gynvael Coldwind Originally committed as revision 25632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove impossible condition from msrle_decode_pal4()Michael Niedermayer2010-11-02
| | | | Originally committed as revision 25631 to svn://svn.ffmpeg.org/ffmpeg/trunk