summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Extend and move macros to create table printing functions to header.Reimar Döffinger2010-03-21
| | | | | | Simplifies creating custom functions for printing DV VLC-related tables. Originally committed as revision 22621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split VLC-related tables out of dvdata.h to make it easier to add supportReimar Döffinger2010-03-21
| | | | | | for hard-coding tables. Originally committed as revision 22620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after r22618.Vitor Sessak2010-03-21
| | | | Originally committed as revision 22619 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split DCT-II and DCT-III in different functions, they do not share any code.Vitor Sessak2010-03-21
| | | | Originally committed as revision 22618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Call DCT by function pointer. Needed for any future ASM implementation andVitor Sessak2010-03-21
| | | | | | allows further cleanup. Originally committed as revision 22617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: move ff_dct_init() to the bottom of the fileVitor Sessak2010-03-21
| | | | Originally committed as revision 22616 to svn://svn.ffmpeg.org/ffmpeg/trunk
* DCT: remove unused field from contextVitor Sessak2010-03-21
| | | | Originally committed as revision 22615 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix minor typoKostya Shishkov2010-03-21
| | | | Originally committed as revision 22614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert removal of _NETBSD_SOURCE definition.Diego Biurrun2010-03-21
| | | | | | It is indeed necessary to compile on NetBSD. Originally committed as revision 22613 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix compilation with --disable-everything --enable-decoder=mpeg2videoAurelien Jacobs2010-03-20
| | | | Originally committed as revision 22612 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move variable declaration, fixes the warning:Diego Biurrun2010-03-20
| | | | | | ffplay.c:1703: warning: unused variable `pos' Originally committed as revision 22611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rdft: reorder functions to avoid static prototypeMåns Rullgård2010-03-20
| | | | Originally committed as revision 22610 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Call rdft by function pointerMåns Rullgård2010-03-20
| | | | | | | | | Call the RDFT by a function pointer like other FFT related transforms. This makes instruction set optimized versions possible. Based on patch by Alex Converse. Originally committed as revision 22609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hotfix for regtest-error failureMichael Niedermayer2010-03-20
| | | | | | | a proper fix appears to require changing h263/mpeg2/motion est to index ref_index like h264. Ill do this change and then revert this hotfix but it will take a bit time. Originally committed as revision 22608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Changelog entry and bump lavf micro version for the addition ofJustin Ruggles2010-03-20
| | | | | | VorbisComment writing for FLAC, Ogg/FLAC, and Ogg/Speex files. Originally committed as revision 22607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VorbisComment writing to Ogg/FLAC and Ogg/Speex files.James Darnley2010-03-20
| | | | | | Patch by James Darnley <james darnley at gmail> Originally committed as revision 22606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VorbisComment writing to FLAC files.James Darnley2010-03-20
| | | | | | Patch by James Darnley <james darnley at gmail>. Originally committed as revision 22605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix build without termios.hMåns Rullgård2010-03-20
| | | | Originally committed as revision 22604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Error concealment of h264 with multiple references.Michael Niedermayer2010-03-20
| | | | Originally committed as revision 22603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* List the FFserver specific options under a "Main options" section, toStefano Sabatini2010-03-20
| | | | | | distinguish them from the generic common options. Originally committed as revision 22602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the definition of AVERROR_INVALIDDATA at the next libavutilStefano Sabatini2010-03-19
| | | | | | | major bump, using an FFmpeg specific error code rather than EINVAL, which has a quite different semantics. Originally committed as revision 22601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend description for AVERROR_INVALIDDATA.Stefano Sabatini2010-03-19
| | | | Originally committed as revision 22600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Register atexit handler only when neededMåns Rullgård2010-03-19
| | | | Originally committed as revision 22599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace wrong condition name in #endif comment by correct instance.Diego Biurrun2010-03-19
| | | | Originally committed as revision 30938 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check whether COMPILE_ALTIVEC is defined, not if it is set to a 0/1 value.Diego Biurrun2010-03-19
| | | | | | COMPILE_ALTIVEC is never set to 1, it is just #defined. Originally committed as revision 30937 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* ffmpeg.c: copy chapters by default.Anton Khirnov2010-03-19
| | | | | | Patch by Anton Khirnov wyskas gmail com Originally committed as revision 22598 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reinitialize the h264 decoder context on every valid aspect ratioJanusz Krzysztofik2010-03-18
| | | | | | | | change, not only size changes. Patch by Janusz Krzysztofik foo=zyszt <jkr$foo@tis.icnet.pl>. Originally committed as revision 22597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The vflip filter does not need to keep ownership of a picture reference.Bobby Bingham2010-03-18
| | | | | | | Avoid creating and releasing useless extra picture references in the start_frame and end_frame callbacks. Originally committed as revision 22596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the new null callbacks to simplify filters and reduce duplicated code.Bobby Bingham2010-03-18
| | | | Originally committed as revision 22595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create a set of null callback functions.Bobby Bingham2010-03-18
| | | | | | These are useful for filters which don't modify the image data. Originally committed as revision 22594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend the generic path of the yuv2rgb converter with support for rgb444Janusz Krzysztofik2010-03-18
| | | | | | | | output format. Patch by Janusz Krzysztofik, jkrzyszt A tis D icnet D pl Originally committed as revision 30934 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace remaining uses of ATTR_ALIGNED with DECLARE_ALIGNEDMåns Rullgård2010-03-18
| | | | Originally committed as revision 22593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* It is difficult nowadays to compile without swscale support.Carl Eugen Hoyos2010-03-18
| | | | Originally committed as revision 22592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make g729dec.c:decoder_init() return AVERROR(EINVAL) rather thanStefano Sabatini2010-03-18
| | | | | | | AVERROR(NOFMT) if one channel if the number of channels specified is different than 1. Originally committed as revision 22591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make url_fseek() return AVERROR_EOF rather than AVERROR(EPIPE) if endStefano Sabatini2010-03-18
| | | | | | of file is reached. Originally committed as revision 22590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove printing of frame sizes and frame rate abbreviations fromStefano Sabatini2010-03-17
| | | | | | | | show_protocols(). The list of abbreviations is both outdated and out of context. Originally committed as revision 22589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a -window_title option, which sets the FFplay window title.Robert Krüger2010-03-17
| | | | | | Patch by Robert Krüger "krueger ET signal7 DOT de". Originally committed as revision 22588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ad-hoc lavfi tests use random values for the slice height usedStefano Sabatini2010-03-17
| | | | | | per each frame, useful for testing slicification. Originally committed as revision 22587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some ad-hoc tests for libavfilter.Stefano Sabatini2010-03-17
| | | | | | | | A patched version of ffmpeg supporting video filters is required for getting this working; thus make lavfitest is supposed to work only in the libavfilter repository for now. Originally committed as revision 22586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cast sample_fmt (as read from bitstream as a 16-bit value) to int16, so thatRonald S. Bultje2010-03-17
| | | | | | negative values, e.g. SAMPLE_FMT_NONE (-1), are read correctly also. Originally committed as revision 22585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation on PPC 470.Carl Eugen Hoyos2010-03-17
| | | | Originally committed as revision 22584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove $(MSG) override for install-lib targetsMåns Rullgård2010-03-17
| | | | | | This is no longer needed and causes incorrect output in some cases. Originally committed as revision 22583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ranlib silent in brief output modeMåns Rullgård2010-03-17
| | | | | | Running ranlib is quick and uninteresting, no need to print it. Originally committed as revision 22582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* qtrleenc: add rgb555 outputAlexis Ballier2010-03-17
| | | | | | Patch by Alexis Ballier std_gmail_addr(name.surname) Originally committed as revision 22581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct reference buffer switching in Indeo 5 decoder.Maxim Poliakovski2010-03-17
| | | | | | Patch by Maxim ($indeo5decauthor) Originally committed as revision 22580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* document two variables in Indeo5 decoding contextKostya Shishkov2010-03-17
| | | | Originally committed as revision 22579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: vertical alignBobby Bingham2010-03-17
| | | | Originally committed as revision 22578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow format and noformat filters to be more completely disabled when theBobby Bingham2010-03-17
| | | | | | other is enabled. Originally committed as revision 22577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: rearrange functions to simplify ifdefferyBobby Bingham2010-03-17
| | | | Originally committed as revision 22576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Free remaining packets on vfw_read_close().Ramiro Polla2010-03-17
| | | | Originally committed as revision 22575 to svn://svn.ffmpeg.org/ffmpeg/trunk