]> git.sesse.net Git - ffmpeg/history - libavcodec/h264.c
Add expected const qualifier on 'buf' to match AVCodec.decode's declaration.
[ffmpeg] / libavcodec / h264.c
2008-12-01 Michael NiedermayerGet rid of now unneeded pps/sps correctness code as...
2008-12-01 Michael NiedermayerAllocate parameter sets sanely instead of using alloc_p...
2008-11-30 Michael NiedermayerFix segfault due to deallocated entries in delayed_pic...
2008-11-26 Diego BiurrunMove encoder-specific quantize_c and related tables...
2008-11-24 Diego BiurrunUse golomb_to_pict_type instead of its duplicate, slice...
2008-11-13 Carl Eugen HoyosFix H.264 decoding.
2008-11-12 Roman ShaposhnikMaking it easier to send arbitrary structures as work...
2008-11-04 Andreas Ömanh264: Implement decoding of picture timing SEI message.
2008-10-28 Michael NiedermayerReplace literally hardcoded max slice number by named...
2008-10-21 Aurelien Jacobsuses FF_ARRAY_ELEMS() where appropriate
2008-10-04 Diego PettenòMark ff_div6 and ff_rem6 static in h264.c. Patch by...
2008-10-02 Carl Eugen HoyosRename copy_picture to ff_copy_picture.
2008-09-26 Diego BiurrunRemove unused variable.
2008-09-25 Michael NiedermayerAvoid out of picture accesses when CODEC_FLAG_EMU_EDGE...
2008-09-25 Michael NiedermayerDo not free sps & pps on width/height changes.
2008-09-25 Michael NiedermayerInitialize next/last_picture* as the generic code does...
2008-09-25 Michael NiedermayerPrint which slices are IDR not just the slice type.
2008-09-25 Michael NiedermayerFix CAVLC+8x8+MBAFF loop filter.
2008-09-24 Michael NiedermayerField -> MBAFF direct mode can use data from fields...
2008-09-22 Michael NiedermayerA few empty lines for readability.
2008-09-22 Michael NiedermayerAnother try to fix temporal direct mode references.
2008-09-22 Michael NiedermayerFix ref_shift so that it is correct for more/all? MBAFF...
2008-09-21 Michael Niedermayerindent
2008-09-21 Michael NiedermayerCorrect comment in the direct mode code.
2008-09-21 Michael NiedermayerSimplify initialization of a few direct mode related...
2008-09-21 Michael NiedermayerMake MBAFF temporal direct mode closer to the spec.
2008-09-21 Michael NiedermayerMove direct_dist_scale_factor() and direct_ref_list_ini...
2008-09-21 Michael NiedermayerSet poc for field references in MBAFF.
2008-09-19 Michael NiedermayerRemove fixme that is based on the assumption of !direct...
2008-09-19 Michael NiedermayerRemove check and error message for "MBAFF + !direct_8x8...
2008-09-18 Michael NiedermayerMake pps/sps scaling_matrix initialization closer to...
2008-09-18 Michael NiedermayerEnsure that extradata is not parsed twice.
2008-09-11 Jason Garrett-GlaserFix incorrect printing of brainfart cropping error...
2008-09-08 Michael NiedermayerRename error_resilience to error_recognition.
2008-09-04 Michael NiedermayerFix artifacts of MPEG4-720I-DN-SV8K.trp caused by lack...
2008-09-02 Michael NiedermayerTry to support invalid h264 that does not mark IDR...
2008-08-13 Diego BiurrunRemove unused variable.
2008-08-11 Michael NiedermayerThe deblock filter does not need all the intra availabi...
2008-08-11 Michael NiedermayerSimplify constrained_intra_pred code in fill_caches().
2008-08-11 Michael NiedermayerSupport MBAFF + constrained intra prediction.
2008-08-10 Michael NiedermayerMask bits of reference indexes properly to avoid negati...
2008-08-10 Michael NiedermayerRemove a few more lines of unneeded code in fill_caches...
2008-08-10 Michael NiedermayerUse the correct reference tables for interlaced MBAFF...
2008-08-10 Michael NiedermayerDo not execute the part of fill_caches() for the loopfi...
2008-08-09 Michael NiedermayerRemove more code that has become useless after the...
2008-08-09 Michael NiedermayerRemove odd pairwise deblock filtering applied to MBAFF...
2008-08-05 Michael NiedermayerUse local variabes for *stride, where local variables...
2008-08-05 Michael Niedermayerindent
2008-08-05 Michael NiedermayerSimplify l1mv/l1ref calculation.
2008-08-05 Michael Niedermayersimplify y_shift/ref_shift code
2008-08-05 Michael Niedermayerindent
2008-08-05 Michael NiedermayerFactorize some code between temporal and spatial direct...
2008-08-05 Michael NiedermayerPort b4/b8_stride code from spatial direct mode to...
2008-08-05 Michael NiedermayerUse frame_num and reference instead of poc for matching...
2008-08-04 Michael Niedermayer*2 /2 is wrong for PAFF references, so do not do it.
2008-08-04 Michael NiedermayerPort col_parity code from spatial mode to temporal...
2008-08-04 Michael NiedermayerThe code under FRAME_MBAFF for temporal direct mode...
2008-08-04 Michael NiedermayerRemove redundant code.
2008-08-04 Michael NiedermayerFill ref_count/ref_poc for both fields of frames.
2008-08-04 Art ClarkeFix static leaks in h264.c.
2008-08-04 Michael NiedermayerUse ref_poc and ref_count from the correct field.
2008-08-04 Michael NiedermayerFix dist_scale_factor for long term reference pictures.
2008-08-04 Michael NiedermayerUse the correct collocated field in pred_direct_motion...
2008-08-03 Michael NiedermayerRemove useless mb_field_decoding_flag setting code...
2008-08-03 Michael Niedermayermb_field_decoding_flag was not initialized
2008-08-02 Michael NiedermayerPicture.ref_count/ref_poc have to be stored per field...
2008-07-30 Michael NiedermayerSimplify intra PCM MB handling.
2008-07-29 Paul KendallUse #define instead of a constant. Patch by Paul Kendall.
2008-07-28 Jason Garrett-GlaserSmall h264 decoding speed optimization: while->do/while
2008-07-27 Jeff DownsInitialize outputed_poc to INT_MIN at decoder initializ...
2008-07-27 Paul Kendallleft_block intialisation optimisation.
2008-07-26 Jeff DownsAnd.... Fix another spec reference to be more specific...
2008-07-26 Jeff DownsFix reference to spec to be more specific and correct.
2008-07-26 Paul KendallSimple refactoring to resolve a FIXME. Patch by Paul...
2008-07-26 Michael Niedermayerindent
2008-07-26 Michael Niedermayerchroma_format_idc=0 aka grayscale support.
2008-07-25 Michael NiedermayerRevert r14404
2008-07-25 Michael NiedermayerRemove another 2 incorrect checks.
2008-07-25 Michael NiedermayerPrint an error if a reference picture is missing.
2008-07-25 Michael NiedermayerRemove mysterious ref->data[0] check.
2008-07-25 Michael Niedermayer10l typo, fix compilation
2008-07-25 Michael NiedermayerRemove another stupidity, long_ref==0 check 4 lines...
2008-07-25 Michael Niedermayerindent
2008-07-25 Michael NiedermayerRewrite fill_default_ref_list(), the old code was obfus...
2008-07-25 Michael NiedermayerDo not scare the user with error messages when everythi...
2008-07-25 Michael NiedermayerMake remove_short() match remove_long() in that it...
2008-07-25 Michael NiedermayerRemoving yet another weird field pic special case,
2008-07-25 Michael NiedermayerMake remove_long() call unreference_pic() internally.
2008-07-25 Michael NiedermayerMerge oddly duplicated remove_long/remove_long_at_index...
2008-07-25 Michael NiedermayerRemove strange long_ref=0.
2008-07-25 Michael Niedermayerindent
2008-07-25 Michael Niedermayer10000l, forgotton }
2008-07-25 Michael NiedermayerRemove another of these obfuscated special cases for...
2008-07-25 Michael NiedermayerSimplify mmco setup code used in IDR pictures.
2008-07-25 Michael NiedermayerRemove redundant h->mmco_index= 0.
2008-07-25 Michael NiedermayerAssert that long_ref has been cleared for released...
2008-07-25 Michael NiedermayerClear long_ref when a frame is no longer a long_ref.
2008-07-25 Michael NiedermayerMake sure mmco index is 0 (instead of uninitialized...
2008-07-25 Michael NiedermayerSimplify strange obfuscated code in MMCO_LONG handling.
2008-07-24 Michael NiedermayerSet field_poc (it was half uninitialized before) and...
next