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
2013-11-04lavc: move AVCodecContext.pkt to AVCodecInternalAnton Khirnov
It's a private field, not meant to be accessed from outside lavc.
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-05-15pixdesc: rename PIX_FMT_* flags to AV_PIX_FMT_FLAG_*Anton Khirnov
2013-03-13rawdec: fix a typo -- || instead of |Nicolas George
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-01-29rawdec: use AVPALETTE_SIZE instead of magic constants.Anton Khirnov
2013-01-26rawdec: cosmetics, reformatAnton Khirnov
2012-12-05lavc: fix decode_frame() third parameter semantics for video decodersAnton Khirnov
It's got_frame, not data size
2012-10-13avutil: Rename ff_set_systematic_pal2() ---> avpriv_set_systematic_pal2()Diego Biurrun
Functions used across libraries should have avpriv_ and not ff_ prefixes.
2012-10-12lavc: do not use av_pix_fmt_descriptors directly.Anton Khirnov
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-09-27avcodec: Drop long-deprecated imgconvert.h headerDiego Biurrun
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-04-06cosmetics: Align codec declarationsMartin Storsjö
Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-04-03rawdec: Support fourccs YV16 and YV24Piotr Bandurski
2012-03-27raw: forward avpicture_fill() error code in raw_decode().Ronald S. Bultje
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2012-03-07raw: move buffer size check up.Ronald S. Bultje
This way, it protects against overreads for 4bpp/2bpp content also. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2012-03-02Remove unnecessary AVFrame pointer casts.Diego Biurrun
2012-02-09pixdesc: mark pseudopaletted formats with a special flag.Anton Khirnov
This makes it possible to dintinguish them from PAL8. Fixes an invalid write in avpicture_layout().
2012-01-02rawdec: propagate pict_type information to the output frameStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-01-02rawdec: Support more QT 1bpp rawvideo files.Piotr Bandurski
Signed-off-by: Anton Khirnov <anton@khirnov.net>
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