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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-06-22rawdec: Fix decoding of QT WRAW files.ami_stuff
From some tests it results that: 1. All of the AVI/MOV WRAW files need to be flipped. 2. MOV WRAW files need to use AVI color modes. 3. Assigning PAL8 mode by default to WRAW codec is not correct.
2011-05-02Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-04-15make containers pass palette change in AVPacketKostya Shishkov
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-15Merge libavcore into libavutilReinhard Tartler
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2011-01-28In the rawvideo decoder, set pkt_pts in the output frame.Stefano Sabatini
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-11-10Move internal function ff_set_systematic_pal() to libavcore, andStefano Sabatini
rename it ff_set_systematic_pal2(). Originally committed as revision 25712 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-29rawdec: Properly pass reordered_opaque through the decoderAlexander Strange
Originally committed as revision 25261 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-25rawdec: ensure that there is always a valid palette for formats thatReimar Döffinger
should have one like gray8 etc. Originally committed as revision 25190 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-24rawdec: only allocate a full-frame size buffer if it actually willReimar Döffinger
be used, place palette buffer in the context to simplify this. Originally committed as revision 25163 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-10avcodec.h: Clarify AVCodecContext::pix_fmt documentation since its value may ↵Tomas Härdin
be set by the demuxer rawdec.c: Only perform bits_per_coded_sample -> pix_fmt guesswork if pix_fmt hasn't been set Originally committed as revision 23561 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-06fix rgb444 support in avi.Michael Niedermayer
Originally committed as revision 23503 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-22Rename pixelFormatBpsAVI to pix_fmt_bps_avi and pixelFormatBpsMOV toStefano Sabatini
pix_fmt_bps_mov. The new names are consistent with the predominant FFmpeg style. Originally committed as revision 23244 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-22Rename findPixelFormat() to find_pix_fmt().Stefano Sabatini
Less ugly and more consistent with the FFmpeg predominant style. Originally committed as revision 23243 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-21Rename ff_raw_pixelFormatTags symbol to ff_raw_pix_fmt_tags.Stefano Sabatini
The new name is shorter and consistent with the FFmpeg style. Originally committed as revision 23206 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-01avi bgr24 padding fix.Michael Niedermayer
Fixes issue1901 Originally committed as revision 22997 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 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-02-03Fix r21223: AVup samples (issue 1685) need a buf offset like AV1x (issue 1684).Carl Eugen Hoyos
Originally committed as revision 21617 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16Correctly decode some Avid AV1x samples, fixes issue 1684.Carl Eugen Hoyos
Originally committed as revision 21241 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-15Do not assign codec_tag to pix_fmt in rawdec.c, but in raw.cCarl Eugen Hoyos
Originally committed as revision 21218 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-12Support uncompressed ("Resolution 1:1") Avid AVI Codec, (partially) fixes ↵Carl Eugen Hoyos
issue 1474. Originally committed as revision 21154 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-05Cosmetics: Fix indentation and comment after r21027.Carl Eugen Hoyos
Originally committed as revision 21028 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-05Support decoding raw 2bpp in mov, fixes issue 1528.Carl Eugen Hoyos
Originally committed as revision 21027 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-05Improve readability of 4bpp raw decoder and prepare for supporting 2bpp.Carl Eugen Hoyos
Originally committed as revision 21026 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-31Fix colourspace for 16 bit raw video in mov, fixes issue 1527 on big-endian.Carl Eugen Hoyos
Originally committed as revision 20985 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-31Support raw black&white in mov, fixes issue 1654.Carl Eugen Hoyos
Originally committed as revision 20984 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-29Use correct pixfmt for 32 bit raw in mov also on big-endian, fixes issue 1630.Carl Eugen Hoyos
Originally committed as revision 20962 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-13Simplify: use FFSWAPReimar Döffinger
Originally committed as revision 20222 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-12Add new FOURCC (0x0003) for raw DIB video, set flip flag accordingly.Jason Garrett-Glaser
Fixes a few AVI files from what is probably a mobile phone video camera. Originally committed as revision 19172 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-26Support YVU9 AVI 4cc.Michael Niedermayer
Fixes issue1068. Originally committed as revision 18952 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-10update comment for rgb 16 bit in .movBaptiste Coudurier
Originally committed as revision 18777 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02Map MOV fourcc YUV2 correctly to PIX_FMT_YUYV422.Jai Menon
Patch by Jai Menon Originally committed as revision 18316 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-21indentMichael Niedermayer
Originally committed as revision 17481 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-21Fix raw rgb/bgr vertical flip in avi based on info from ↵Michael Niedermayer
http://www.fourcc.org/fccbihgt.php. partially fixes issue862. Originally committed as revision 17475 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 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
2008-10-13Fix some icc warnings by using enum PixelFormat instead of int where ↵Carl Eugen Hoyos
appropriate. Originally committed as revision 15611 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni
bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-13Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini
Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-28Add long names to AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-21Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng
Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-281000l parenthesisBaptiste Coudurier
Originally committed as revision 12274 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-28code is ok for 4bpp in mov too, fix 16grey.movBaptiste Coudurier
Originally committed as revision 12273 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constMichael Niedermayer
Originally committed as revision 11738 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-29support raw 4bpp aviMichael Niedermayer
fixes dance1.avi closes issue40 Originally committed as revision 9828 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-09split rawvideo encoder and decoder in their own filesAurelien Jacobs
Originally committed as revision 9560 to svn://svn.ffmpeg.org/ffmpeg/trunk