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-12-05mpeg4videodec: move showed_packed_warning from MpegEncContext to Mpeg4DecContextAnton Khirnov
2013-12-05mpeg4videodec: move intra_dc_threshold from MpegEncContext to Mpeg4DecContextAnton Khirnov
2013-12-05mpeg4videodec: move use_intra_dc_vlc from MpegEncContext to Mpeg4DecContextAnton Khirnov
2013-11-29mpeg4videodec: move sprite_{shift,traj} from MpegEncContext to Mpeg4DecContextAnton Khirnov
2013-11-29mpeg4videodec: move num_sprite_warping_points from MpegEncContext to ↵Anton Khirnov
Mpeg4DecContext
2013-11-29mpeg4videodec: move sprite_brightness_change from MpegEncContext to ↵Anton Khirnov
Mpeg4DecContext
2013-11-29mpeg4videodec: move scalability from MpegEncContext to Mpeg4DecContextAnton Khirnov
2013-11-29mpeg4videodec: move enhancement_type from MpegEncContext to Mpeg4DecContextAnton Khirnov
2013-11-29mpeg4videodec: remove a write-only variable from MpegEncContextAnton Khirnov
2013-11-29mpeg4videodec: move new_pred from MpegEncContext to Mpeg4DecContextAnton Khirnov
2013-11-29mpeg4videodec: replace MpegEncContext.reduced_res_vop with a local variableAnton Khirnov
2013-11-29mpeg4videodec: remove a write-only variable from MpegEncContextAnton Khirnov
2013-11-29mpeg4videodec: move t_frame from MpegEncContext to Mpeg4DecContextAnton Khirnov
2013-11-29mpeg4videodec: move cplx_estimation_* fields from MpegEncContext to ↵Anton Khirnov
Mpeg4DecContext
2013-11-29mpeg4videodec: move mpeg4-specific bug workaround variables from ↵Anton Khirnov
MpegEncContext to Mpeg4DecContext
2013-11-29mpeg4videodec: move mpeg4-specific post-frame-decode code from h264dec to ↵Anton Khirnov
mpeg4videodec
2013-11-29mpeg4videodec: move mpeg4-specific bug detection from h263 generic code to mpeg4Anton Khirnov
2013-11-29mpeg4videodec: move MpegEncContext.resync_marker into Mpeg4DecContext.Anton Khirnov
2013-11-29mpeg4videodec: move MpegEncContext.rvlc to Mpeg4DecContextAnton Khirnov
2013-11-29mpeg4videodec: remove write-only sprite variables from MpegEncContextAnton Khirnov
2013-11-29mpeg4videodec: move MpegEncContext.vol_sprite_usage to Mpeg4DecContextAnton Khirnov
2013-11-29mpeg4videodec: move MpegEncContext.time_increment_bits to Mpeg4DecContextAnton Khirnov
The field remains in MpegEncContext for use in the encoder.
2013-11-29mpeg4videodec: move MpegEncContext.shape to Mpeg4DecContextAnton Khirnov
2013-11-29mpeg4videodec: add a mpeg4-specific private context.Anton Khirnov
2013-11-19mpeg4videodec: K&R formatting cosmeticsVittorio Giovara
2013-10-28lavc: don't set AVFrame.pts to random numbers in decoders.Anton Khirnov
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-09-17mpeg4videodec: Check the width/height in mpeg4_decode_sprite_trajectoryMartin Storsjö
This avoids a potential division by zero. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
2013-08-05vdpau: remove old-style decodersRémi Denis-Courmont
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-03-07Add missing error_resilience includes to files that use ERDiego Biurrun
2013-03-06lavc: Split out ff_hwaccel_pixfmt_list_420[] over individual codecsRonald S. Bultje
Not all hwaccels implement all codecs, so using one single list for multiple such codecs means some codecs will be represented in the list, even though they don't actually handle that codec. Copying specific lists in each codec fixes that. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-02-15error_resilience: decouple ER from MpegEncContextAnton Khirnov
2013-01-23Drop DCTELEM typedefDiego Biurrun
It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-09-19mpeg4: support frame parameter changes with frame-mtJanne Grunau
Adds a flag context_reinit to MpegEncContext to relieable keep track of frame parameter changes which require a context reinitialization. This is required for broken inputs which change the frame size but error out before the context can be reinitialized.
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-04-21Remove lowres video decodingMans Rullgard
This feature is complex, of questionable utility, and slows down normal decoding. Signed-off-by: Mans Rullgard <mans@mansr.com>
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-03-02Replace AVFrame pointer casts by proper struct member accesses.Diego Biurrun
2012-02-16mpeg4: Add ff_ prefixes to nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16vlc/rl: Add ff_ prefix to the nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16h263: Add ff_ prefix to nonstatic symbolsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-12-18get_bits: remove LAST_SKIP_CACHE macroMans Rullgard
This macro is empty since the removal of the A32 bitstream reader. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-12-13error_resilience: use the ER_ namespaceLuca Barbato
Add the namespace to {AC_,DC_,MV_}{END,ERROR} macros Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-12-13doxygen: misc consistency, spelling and wording fixesDiego Biurrun
2011-12-12lavc: convert error_recognition to err_recognition.Dustin Brody
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-11-02Replace ffmpeg references with more accurate libav* references.Diego Biurrun
2011-10-10mpeg4dec: use unsigned type for startcode in ff_mpeg4_decode_picture_headerMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-08-01mpeg4videodec: remove dead code that would have detected erroneous encodingDustin Brody
Signed-off-by: Diego Biurrun <diego@biurrun.de>