Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-01Add .dpx to the list of supported file extensions for the image2 muxerPeter Ross
2011-04-01make image2 muxer/demuxer support sequence of individual rawvideo filesPeter Ross
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-04-01img2: stop using CODEC_ID_RAWVIDEO to trigger processing of independant ↵Peter Ross
y/u/v image files This is requireed, as img2 will be modified soon to support .raw image file sequences. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-03-17Merge remote-tracking branch 'newdev/master'Michael Niedermayer
Conflicts: Changelog doc/APIchanges doc/optimization.txt libavformat/avio.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-03-17avio: rename put_flush_packet -> avio_flushAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-08avio: avio_ prefix for url_fsizeAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 76aa876e69cf78a40821e66dec0a1006e4eb23ec)
2011-03-08avio: deprecate url_feofAnton Khirnov
AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-07avio: avio_ prefix for url_fsizeAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-26lavf: use a new ffio_wfourcc macro instead of put_tag() where possibleAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 0abdb2931719d96dee725e555e9b46b2b2f8a6be)
2011-02-25lavf: use a new ffio_wfourcc macro instead of put_tag() where possibleAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-23avio: rename url_fopen/fclose -> avio_open/close.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 22a3212e32b696028e21f00871f3cb48c044029d)
2011-02-23avio: rename url_fopen/fclose -> avio_open/close.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-22avio: avio: avio_ prefixes for put_* functionsAnton Khirnov
In the name of consistency: put_byte -> avio_w8 put_<type> -> avio_w<type> put_buffer -> avio_write put_nbyte will be made private put_tag will be merged with avio_put_str Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 77eb5504d3b3e1047900382350e0bc5e0bfb16b5)
2011-02-22avio: avio_ prefixes for get_* functionsAnton Khirnov
In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit b7effd4e8338f6ed5bda630ad7ed0809bf458648)
2011-02-21avio: avio: avio_ prefixes for put_* functionsAnton Khirnov
In the name of consistency: put_byte -> avio_w8 put_<type> -> avio_w<type> put_buffer -> avio_write put_nbyte will be made private put_tag will be merged with avio_put_str Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-21avio: avio_ prefixes for get_* functionsAnton Khirnov
In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-20avio: rename ByteIOContext to AVIOContext.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit ae628ec1fd7f54c102bf9e667a3edd404b9b9128)
2011-02-20avio: rename ByteIOContext to AVIOContext.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-30Make the image2 demuxer log more verboseStefano Sabatini
Add an error message in case the user requests to write more than one file and the path does not contain a "%d" or "%0Nd" pattern. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 4fc9ff0ad6f0f6b2c7443c6b4a3a1c817e97fdfd)
2011-01-28Make the image2 demuxer log more verboseStefano Sabatini
Add an error message in case the user requests to write more than one file and the path does not contain a "%d" or "%0Nd" pattern. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-28Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts. (cherry picked from commit c6610a216ed2948885772154a2eed696e0cb4aca)
2011-01-27Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
2010-10-22cosmetics: align fields, and remove useless ones, in img2.cPascal Massimino
Originally committed as revision 25539 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-21cleanup image2pipe_{de}muxer fieldsPascal Massimino
Originally committed as revision 25531 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-07Associate .tga with format image2.Carl Eugen Hoyos
Originally committed as revision 24079 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-08Add Pictor/PC Paint to image2 muxer/demuxerPeter Ross
Originally committed as revision 23533 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas
Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-22Dont senselessly fail on rawvideo that isnt 3 files per frame.Michael Niedermayer
Originally committed as revision 22637 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-12Add flag so muxers not needing width/height can signal this.Michael Niedermayer
Add this flag to img2 (fixes -vcodec copy to image2 in some cases) Originally committed as revision 21773 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-28Avoid using deprecated AVFormatParameters::[audio|video]_codec_id field.Jai Menon
Originally committed as revision 21511 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-02print error message when image2 muxer fail to compute frame filenameBaptiste Coudurier
Originally committed as revision 20694 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-22Fixes detection and error reporting of non-existing files in img2.c.Samuli Valo
Patch by Samuli Valo: name surname picturall com Originally committed as revision 20346 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-30return EOF in image2 demuxerBaptiste Coudurier
Originally committed as revision 19538 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-20Revert unintended hunk of r19241.Carl Eugen Hoyos
Originally committed as revision 19242 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-20Revert r19239: It broke four conformance tests.Carl Eugen Hoyos
Originally committed as revision 19241 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-20Print meaningful error messages when url_fopen fails.Jai Menon
Originally committed as revision 19230 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-12DPX (Digital Picture Exchange) image decoderJimmy Christensen
patch by Jimmy Christensen, jimmy ghost dk Originally committed as revision 19163 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-20PCX encoder that handles 1-, 8-, and 24-bpp pixfmts.Daniel Verkamp
Patch by Daniel Verkamp, daniel drv nu Originally committed as revision 18077 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-19cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun
Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-18add jp2 formater in image2 muxerBaptiste Coudurier
Originally committed as revision 16664 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14include intreadwrite.h, fix compilation, img2.c use AV_RL32Baptiste Coudurier
Originally committed as revision 16595 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-17Add jp2 support to img2 demuxer.Benoit Fouet
On behalf of Jai Menon Originally committed as revision 16187 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-04Recognize pnm file as images.Carl Eugen Hoyos
Originally committed as revision 16004 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-23Add forgotten file format pgmyuv.Carl Eugen Hoyos
Originally committed as revision 15910 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-22Support picture output without -f image2 for most codecs.Carl Eugen Hoyos
Originally committed as revision 15909 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-22uses FF_ARRAY_ELEMS() where appropriateAurelien Jacobs
Originally committed as revision 15662 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-26Prevent image2 from complaining about non monotone timestamps asMichael Niedermayer
there are no timestamps in "raw" image2. Originally committed as revision 15419 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-03Replace generic CONFIG_MUXERS preprocessor conditionals by more specificDiego Biurrun
CONFIG_FOO_MUXER conditionals where appropriate. Originally committed as revision 15158 to svn://svn.ffmpeg.org/ffmpeg/trunk