| Commit message (Expand) | Author | Age | Files | Lines |
* | optimize h264_loop_filter_strength_mmx2 | Loren Merritt | 2010-01-26 | 1 | -74/+70 |
* | Don't use tcp_fd if we're not using TCP-based connections (e.g. when | Jeremy Morton | 2010-01-26 | 1 | -1/+1 |
* | remove unneeded check | Michael Niedermayer | 2010-01-26 | 1 | -2/+0 |
* | Use left_mb_xy from fill_caches instead of recalculating it. | Michael Niedermayer | 2010-01-26 | 1 | -5/+3 |
* | Simplify left_xy content for the loop filter, this also makes it closer to | Michael Niedermayer | 2010-01-26 | 1 | -0/+10 |
* | Simplify loop filter a little by using top/left_type. | Michael Niedermayer | 2010-01-26 | 1 | -11/+9 |
* | Set top & left types for deblock in fill_caches(). | Michael Niedermayer | 2010-01-26 | 1 | -4/+13 |
* | 100l typo fix, mixed up +-1 forcing the loop filter skip to never skip. | Michael Niedermayer | 2010-01-26 | 1 | -1/+1 |
* | cosmetic | Michael Niedermayer | 2010-01-26 | 1 | -1/+1 |
* | Fix qp_thres loop filter check for MBAFF. | Michael Niedermayer | 2010-01-26 | 1 | -2/+5 |
* | Optimize mb neighbor initialization for MBAFF in fill_caches(). | Michael Niedermayer | 2010-01-26 | 1 | -32/+29 |
* | Metasoft MJPEG codec has Cb and Cr swapped, fixes issue 1611. | Carl Eugen Hoyos | 2010-01-26 | 1 | -0/+4 |
* | Use isAnyRGB() where possible | Michael Niedermayer | 2010-01-26 | 3 | -13/+11 |
* | Add 3 more RGB makros that allow specifying RGB in bytes and any rgb/bgr. | Michael Niedermayer | 2010-01-26 | 1 | -0/+16 |
* | Rename isRGB() and isBGR() as their meaning is confusing. | Michael Niedermayer | 2010-01-26 | 4 | -19/+19 |
* | Merge two "if (flags & SWS_PRINT_INFO) { ... }" blocks, slightly | Stefano Sabatini | 2010-01-25 | 1 | -2/+0 |
* | Fix heap overflow due to lack of nb_components check. | Michael Niedermayer | 2010-01-25 | 1 | -0/+4 |
* | Release buffer when decoding is finished. | Carl Eugen Hoyos | 2010-01-25 | 1 | -1/+10 |
* | Print config of each lib if different from that of ffmpeg/ffplay/ffserver | Måns Rullgård | 2010-01-25 | 1 | -0/+24 |
* | Optimize decode_cabac_field_decoding_flag(). | Michael Niedermayer | 2010-01-25 | 1 | -12/+6 |
* | configure: fix --cpu=nocona | Måns Rullgård | 2010-01-25 | 1 | -1/+1 |
* | 100l, correct wrong H.264+adaptive MBAFF decoding | Alexander Strange | 2010-01-25 | 1 | -2/+5 |
* | Check if dxva2api.h is recent enough to compile vc1_dxva2_hwaccel. | Ramiro Polla | 2010-01-25 | 1 | -1/+3 |
* | Load the proper getaddrinfo functions from ws2_32.dll, if they're present. | Martin Storsjö | 2010-01-25 | 1 | -0/+31 |
* | Check for getaddrinfo in the winsock headers. | Martin Storsjö | 2010-01-25 | 1 | -0/+2 |
* | Only define _WIN32_WINNT=0x0501 if $target_os = "mingw32". | Martin Storsjö | 2010-01-25 | 2 | -4/+7 |
* | H.264: Use 64-/128-bit write-combining macros for copies | Alexander Strange | 2010-01-25 | 2 | -52/+54 |
* | Only check frame size if the header is valid. | Justin Ruggles | 2010-01-24 | 1 | -1/+1 |
* | Fix decoding ATI VCR2 codec, sample in | Carl Eugen Hoyos | 2010-01-24 | 1 | -0/+3 |
* | Doxument url_open(). | Stefano Sabatini | 2010-01-24 | 1 | -0/+11 |
* | Force codec_tag I420 for Quicktime Planar Y'CbCr 8-bit 4:2:0 raw codec, | Carl Eugen Hoyos | 2010-01-24 | 1 | -0/+3 |
* | Fix mis-computation of the needsDither variable erroneously introduced | Stefano Sabatini | 2010-01-24 | 1 | -1/+1 |
* | Branchless setting of MB_TYPE_8x8DCT. | Michael Niedermayer | 2010-01-24 | 1 | -3/+1 |
* | Remove cruft. | Michael Niedermayer | 2010-01-24 | 1 | -2/+0 |
* | Mark index as unsigend so gcc knows it doesnt need a sign extension on x86_64. | Michael Niedermayer | 2010-01-24 | 1 | -4/+6 |
* | a[b-1] -> (a-1)[b]. | Michael Niedermayer | 2010-01-24 | 1 | -4/+4 |
* | Optimize suffix_length computation, 1 cpu cycle speedup. | Michael Niedermayer | 2010-01-24 | 1 | -3/+1 |
* | Simplify suffix_length computation, same speed. | Michael Niedermayer | 2010-01-24 | 1 | -3/+1 |
* | Favor the term "URL" over "filename", as the API deals with URLs | Stefano Sabatini | 2010-01-24 | 1 | -8/+8 |
* | Optimize level_code computation, 6cpu cycles speedup. | Michael Niedermayer | 2010-01-24 | 1 | -1/+1 |
* | Make url_read_complete handle EAGAIN more intelligently. | Reimar Döffinger | 2010-01-24 | 1 | -0/+10 |
* | Fix crash in MLP decoder due to integer overflow. | Reimar Döffinger | 2010-01-24 | 1 | -1/+1 |
* | 1 cpu cycle faster suffix_length calculation. | Michael Niedermayer | 2010-01-24 | 1 | -1/+1 |
* | Merge two "if (flags & SWS_PRINT_INFO) { ... }" blocks. | Stefano Sabatini | 2010-01-24 | 1 | -2/+0 |
* | VC-1/WMV3 DXVA2 implementation | Laurent Aimar | 2010-01-24 | 4 | -0/+297 |
* | Remove is_complex from loop_filter() its useless there in its current form. | Michael Niedermayer | 2010-01-24 | 1 | -5/+3 |
* | Added a few missing consts in dxva_h264. | Laurent Aimar | 2010-01-24 | 1 | -5/+5 |
* | Added a missing const to ff_h264_get_slice_type(). | Laurent Aimar | 2010-01-24 | 2 | -2/+2 |
* | Doxument url_close(). | Stefano Sabatini | 2010-01-24 | 1 | -0/+9 |
* | Added missing const to get_bits_count(). | Laurent Aimar | 2010-01-24 | 1 | -3/+3 |