summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit 'abae27ed3acd0a7c54f11760c5be2d2653c4edf8'Michael Niedermayer2013-01-133-5/+5
|\ | | | | | | | | | | | | | | * commit 'abae27ed3acd0a7c54f11760c5be2d2653c4edf8': rtpdec: Fix the calculation of expected number of packets fate: vp3: Fix fate-vp3-coeff-level64 test dependencies Merged-by: Michael Niedermayer <[email protected]>
| * rtpdec: Fix the calculation of expected number of packetsMartin Storsjö2013-01-121-1/+1
| | | | | | | | | | | | | | | | | | The base_seq variable is set to first_seq - 1 (in rtp_init_sequence), so no + 1 is needed here. This avoids reporting 1 lost packet from the start. Signed-off-by: Martin Storsjö <[email protected]>
| * fate: vp3: Fix fate-vp3-coeff-level64 test dependenciesDiego Biurrun2013-01-122-4/+4
| | | | | | | | Also rename the test to reflect that the video track is Theora, not VP3.
* | Merge commit '4d3b144c5ea824193019019d33740a1ae9e0bb69'Michael Niedermayer2013-01-139-69/+69
|\| | | | | | | | | | | | | | | | | | | | | * commit '4d3b144c5ea824193019019d33740a1ae9e0bb69': fate: cosmetics: Order some test entries Conflicts: tests/fate/lossless-video.mak tests/fate/microsoft.mak Merged-by: Michael Niedermayer <[email protected]>
| * fate: cosmetics: Order some test entriesDiego Biurrun2013-01-129-69/+69
| |
* | pthread: Do not use a half updated context as master for deallocation.Michael Niedermayer2013-01-131-1/+5
| | | | | | | | | | | | | | Fixes assertion failure Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
* | dvdsubenc: use unsigned shifts to avoid shifting into the sign bitMichael Niedermayer2013-01-121-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | dvdsubdec: use unsigned shifts to avoid shifting into the sign bitMichael Niedermayer2013-01-121-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | swr: work with 4 noise shaping coeffs at a timeMichael Niedermayer2013-01-121-1/+10
| | | | | | | | | | | | 63->38 kcycles Signed-off-by: Michael Niedermayer <[email protected]>
* | swr/noise_shaping_data: pad coeffs to multiple of 4 when they are 1 belowMichael Niedermayer2013-01-121-0/+1
| | | | | | | | | | | | This allows using code working with 4 at a time Signed-off-by: Michael Niedermayer <[email protected]>
* | dec/developer: Add Valgrind / Address Sanitizer to the patch checklistMichael Niedermayer2013-01-121-0/+3
| | | | | | | | | | | | Reviewed-by: saste Reviewed-by: Paul B Mahol <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* | swr: use a local variable for ns_coeffsMichael Niedermayer2013-01-121-1/+2
| | | | | | | | | | | | maybe a very tiny bit faster Signed-off-by: Michael Niedermayer <[email protected]>
* | swr: use local variable for ns_errorsMichael Niedermayer2013-01-121-2/+3
| | | | | | | | | | | | 71 -> 63 kcycles Signed-off-by: Michael Niedermayer <[email protected]>
* | swr: minor simplification for the noise shaping pos updateMichael Niedermayer2013-01-121-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | lavfi/aevalsrc: try to honor specified durationMatthieu Bouron2013-01-121-2/+2
| | | | | | | | | | | | | | | | | | | | If nb_samples divide sample_rate and if nb_samples allow it, aevalsrc should generate the exact amount of samples according to duration. Example: aevalsrc=0::n=480:s=48000:d=5.21 should generate 250080 samples. Signed-off-by: Stefano Sabatini <[email protected]>
* | frmdec: do not abuse ff_codec_get_id()Paul B Mahol2013-01-121-3/+3
| | | | | | | | Signed-off-by: Paul B Mahol <[email protected]>
* | lavf: use avpriv_find_pix_fmt instead of ff_Michael Niedermayer2013-01-121-1/+1
| | | | | | | | | | Found-by: durandal_1707 Signed-off-by: Michael Niedermayer <[email protected]>
* | lavc: ff_find_pix_fmt ->avprivMichael Niedermayer2013-01-122-5/+15
| | | | | | | | | | Found-by: durandal_1707 Signed-off-by: Michael Niedermayer <[email protected]>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2013-01-124-3/+13
|\| | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: Add version bump and APIchanges entry for Add AV_PIX_FMT_VDPAU. pixfmt: add picture format for VDPAU Conflicts: doc/APIchanges libavutil/pixfmt.h libavutil/version.h Merged-by: Michael Niedermayer <[email protected]>
| * Add version bump and APIchanges entry for Add AV_PIX_FMT_VDPAU.Diego Biurrun2013-01-122-2/+5
| | | | | | | | Also fix a lavu version typo in APIchanges.
| * pixfmt: add picture format for VDPAURémi Denis-Courmont2013-01-122-0/+7
| | | | | | | | Signed-off-by: Diego Biurrun <[email protected]>
* | Merge commit 'f61272f0efd80da437570aad2c40e00f9d3f4fe6'Michael Niedermayer2013-01-122-491/+598
|\| | | | | | | | | | | | | | | | | | | | | * commit 'f61272f0efd80da437570aad2c40e00f9d3f4fe6': ratecontrol: K&R cosmetic formatting rtpdec: Remove a useless todo comment Conflicts: libavcodec/ratecontrol.c Merged-by: Michael Niedermayer <[email protected]>
| * ratecontrol: K&R cosmetic formattingLuca Barbato2013-01-121-486/+591
| | | | | | | | Signed-off-by: Diego Biurrun <[email protected]>
| * rtpdec: Remove a useless todo commentMartin Storsjö2013-01-121-1/+1
| | | | | | | | | | | | | | | | | | The question can be answered: No, we do not know the initial sequence number from the SDP. In certain cases, it can be known from the RTP-Info response header in RTSP though. (In that case, we use it as timestamp origin, but not for rtp receiver statistics.) Signed-off-by: Martin Storsjö <[email protected]>
* | Merge commit '54cb096ee4558b3bfc28c2fcd6418ce82dc39fe1'Michael Niedermayer2013-01-121-7/+1
|\| | | | | | | | | | | | | | | * commit '54cb096ee4558b3bfc28c2fcd6418ce82dc39fe1': rtsp: Remove an outdated comment rtsp: Remove references to weirdly named variables in other files Merged-by: Michael Niedermayer <[email protected]>
| * rtsp: Remove an outdated commentMartin Storsjö2013-01-121-4/+0
| | | | | | | | | | | | | | | | It is unclear what the bug exactly was and if it ever was fixed, and we don't even support decoding via faad any longer. The comment has been present since d0deedcb in 2006. Signed-off-by: Martin Storsjö <[email protected]>
| * rtsp: Remove references to weirdly named variables in other filesMartin Storsjö2013-01-121-3/+1
| | | | | | | | | | | | | | | | One of them is renamed now, but mentioning it by name serves no purpose here. The other table mentioned ceased to exist under that name in 4934884a1 in 2006. Signed-off-by: Martin Storsjö <[email protected]>
* | Merge commit 'c44784c9bb9d0ddf5d39d0dfa640816a57b8f457'Michael Niedermayer2013-01-121-31/+25
|\| | | | | | | | | | | | | | | * commit 'c44784c9bb9d0ddf5d39d0dfa640816a57b8f457': rtp: Rename a static variable to normal naming conventions rtp: Cosmetic cleanup Merged-by: Michael Niedermayer <[email protected]>
| * rtp: Rename a static variable to normal naming conventionsMartin Storsjö2013-01-121-24/+24
| | | | | | | | Signed-off-by: Martin Storsjö <[email protected]>
| * rtp: Cosmetic cleanupMartin Storsjö2013-01-121-10/+4
| | | | | | | | | | | | | | Remove leftover debug comments, fix brace placement and add whitespace, remove unnecessary and weirdly placed braces. Signed-off-by: Martin Storsjö <[email protected]>
* | doc/protocols: improve wording of a sentence in http docsStefano Sabatini2013-01-121-1/+2
| | | | | | | | Suggested-By: Alexander Strasser
* | doc/ffserver: remove painfully outdated "What do I need?" sectionStefano Sabatini2013-01-121-8/+0
| |
* | doc/ffserver: remove paragraph in the introductory blurbStefano Sabatini2013-01-121-5/+0
| | | | | | | | | | | | The paragraph is about what ffserver is not and where to look for other information, but is pretty redundant and distracting, especially considering the new organization of the documentation.
* | doc/ffserver: rework introducing paragraphs of the "description" chapterStefano Sabatini2013-01-121-18/+17
| | | | | | | | | | In particular, add some markup, fix empty line, and merge it with "How does it work?" section.
* | doc/protocols: document http protocol optionsStefano Sabatini2013-01-121-0/+37
| |
* | lavf/http: fix/extend option descriptionsStefano Sabatini2013-01-121-5/+5
| | | | | | | | | | In particular, favor predicative form over nominal description of the set parameter. This is more globally consistent.
* | mpegvideo: dont leave stale pointers in next/last pictureMichael Niedermayer2013-01-121-0/+2
| | | | | | | | | | | | | | Fixes out of array reads Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
* | vc1dec: ensure cbpcy_vlc has been set before decoding a frame.Michael Niedermayer2013-01-121-0/+4
| | | | | | | | | | | | | | Fixes null pointer dereference Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
* | fate: try to fix diracMichael Niedermayer2013-01-112-3/+3
| | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | h264: reset first_field when current_picture_ptr is resetMichael Niedermayer2013-01-111-0/+1
| | | | | | | | | | | | | | Fixes NULL pointer dereference Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
* | fate: add dirac decoding test (main profile).Clément Bœsch2013-01-112-0/+6
| |
* | mjpegdec: Fix out of array read in unescaping codeMichael Niedermayer2013-01-111-1/+1
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
* | mxfdec: Fix integer overflow with many channelsMichael Niedermayer2013-01-111-1/+1
| | | | | | | | | | | | | | | | Fixes division by zero Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Reviewed-by: Matthieu Bouron <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* | wavpack: check pointer to avoid overreading input bufferMichael Niedermayer2013-01-111-2/+2
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
* | ra144enc: fix two "may be used uninitialized in this function" warningsMichael Niedermayer2013-01-111-2/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | au: switch to ff_pcm_read_packet() again, after the mergeMichael Niedermayer2013-01-111-16/+1
| | | | | | | | | | | | | | This fixes G722 durations Suggested-by: durandal_1707 Signed-off-by: Michael Niedermayer <[email protected]>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2013-01-112-1/+3
|\| | | | | | | | | | | | | | | * qatar/master: configure: enable pic for shared libs on AArch64 zmbv: Reset the decoder on keyframe errors Merged-by: Michael Niedermayer <[email protected]>
| * configure: enable pic for shared libs on AArch64Marcin Juszkiewicz2013-01-111-1/+1
| | | | | | | | | | Signed-off-by: Marcin Juszkiewicz <[email protected]> Signed-off-by: Martin Storsjö <[email protected]>
| * zmbv: Reset the decoder on keyframe errorsLuca Barbato2013-01-111-0/+2
| | | | | | | | Prevent the crash on fuzzed files as reported in bug 63.
* | Merge commit '7b8c5b263bc680eff5710bee5994de39d47fc15e'Michael Niedermayer2013-01-112-4/+8
|\| | | | | | | | | | | | | | | * commit '7b8c5b263bc680eff5710bee5994de39d47fc15e': vc1dec: prevent a crash due missing pred_flag parameter matroska: Fix use after free Merged-by: Michael Niedermayer <[email protected]>