0
I Use This!
Inactive

Commits : Listings

Analyzed about 19 hours ago. based on code collected 1 day ago.
Apr 17, 2023 — Apr 17, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Move ffm_close function up to avoid a forward declaration. More... over 13 years ago
ffmdec: Do not manually free streams on read_header error, this is always handled by upper layers. Fixes double-frees (issue 2003). Instead call ffm_close to ensure rc_eqs are freed also in the error case. More... over 13 years ago
VP8: Unroll decoding segment update More... over 13 years ago
Fix obvious bug in assignment. Somehow, the test vectors don't test this... More... over 13 years ago
add SubRip muxer and demuxer More... over 13 years ago
Fix SPLATB_REG mess. Used to be a if/elseif/elseif/elseif spaghetti, so this splits it into small optimization-specific macros which are selected for each DSP function. The advantage of this approach is that the sse4 functions now use the ssse3 codepath also without needing an explicit sse4 codepath. More... over 13 years ago
Simplify lavfi test script a little
mru
More... over 13 years ago
Unbreak parallel lavfi testing
mru
More... over 13 years ago
aacenc: TLS: Save maximum values for each swb in a table. More... over 13 years ago
10l: Remove some commented out code that slipped in. More... over 13 years ago
aacenc: TLS: Try to preserve some energy in each non-zero band. More... over 13 years ago
Use "const" qualifier for pointers that point to input data of audio encoders. This is purely for clarity/documentation purposes. More... over 13 years ago
Fix a "function declaration isn't a prototype" warning. More... over 13 years ago
Fix use of uninitialized data: A array element can not be used to initialized another array element of the same array. More... over 13 years ago
Never shrink the ByteIOContext buffer in ff_rewind_with_probe_data More... over 13 years ago
mpegts: Warn if unable to seek back More... over 13 years ago
VP8: Remove no longer used vp8_rac_get_tree_with_offset More... over 13 years ago
VP8: Remove stray + More... over 13 years ago
VP8: Inline decoding the huffman tree for the inter macroblock mode More... over 13 years ago
aacenc: Prevent premature termination of the two loop search. More... over 13 years ago
aacdec: Only load and write each predictor variable one. More... over 13 years ago
aacdec: 4% faster main profile decoding. More... over 13 years ago
aacenc: Favor log2f() and sqrtf() over log2() and sqrt(). More... over 13 years ago
aacenc: Factorize some scalefactor utilities. More... over 13 years ago
Inline asm for VP56 arith coder More... over 13 years ago
VP8: Inline traversing vp8_small_mvtree More... over 13 years ago
VP8: Use vp56_rac_get_prob_branchy when the bit is only used by an if() More... over 13 years ago
Decode DCT tokens by branching to a different code path for each branch on the huffman tree, instead of traversing the tree in a while loop. More... over 13 years ago
Move renormalization of the VP56 arith decoder to before decoding a bit More... over 13 years ago
Split renorm of vp56 arith decoder to its own function More... over 13 years ago