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-01-14libvorbisenc: Fix assignments in if()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14libvo-aacenc: Fix assignments in if()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14libspeexenc: Fix assignments in if()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14libopencore-amr: Fix assignments in if()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14libmp3lame: Fix assignments in if()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14libfdk-aacenc: Fix assignments in if()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14libfaac: Fix assignments in if()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14aacenc: Fix assignments in if()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14doc/examples: fix assignments in if()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14h264: don t leave stale pointers in delayed_pic in flush_changes.Michael Niedermayer
Fixes null pointer dereference & assertion failure Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14swr/dither: fix division by 0Michael Niedermayer
Found-by: Daemon404 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14h264: fix () placementMichael Niedermayer
Fixes null pointer dereference Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-14ffplay: fix sws_flagsMichael Niedermayer
Fixes Ticket45 Reviewed-by: Marton Balint <cus@passwd.hu> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13swr: fix handling of timestamps that cause multiple drops or silence injectionsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13swr: limit buffer size for silence injectionMichael Niedermayer
This reduces memory usage for unreasonable large silence injections Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13swr: limit buffer size for discarding.Michael Niedermayer
This prevents insane memory usage in case of insane input values. Untested due to lack of a testcase that causes such insane allocation Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13ffplay: extend documentation for the -vf optionStefano Sabatini
In particular, make it consistent with the ffmpeg docs.
2013-01-13swr: move silence buffer to context to avoid per use malloc/freeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13swr: move buffer used to discard sample to contextMichael Niedermayer
This avoids the need to allocate & free to repeatly Fixes Ticket2122 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13lavf: clarify/extend documentation for AVFormatContext::analyzedurationStefano Sabatini
"analyzeduration" is not used to detect the input duration, but to specify the max probe data duration. Fix option description and related doc entry accordingly.
2013-01-13lavf/utils: clarify/extend messages in avformat_find_stream_info()Stefano Sabatini
In particular, specify the unit of the shown values in case the max probe size/duration is reached.
2013-01-13doc/ffmpeg: extend documentation for the -filter options and -af/vf aliasesStefano Sabatini
2013-01-13doc/texipod: add rule to correctly interpret @ref{ANCHOR,XREF,SECTION_NAME,...}Stefano Sabatini
This allows to name an internal reference in the POD/MAN output.
2013-01-13lavfi/gradfun: support YUV440PPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-01-13Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: rtpdec: Send a valid "delay since SR" value in the RTCP RR packets Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13Merge commit 'e568db40258d549777ac1c16971678e18a18f5f5'Michael Niedermayer
* commit 'e568db40258d549777ac1c16971678e18a18f5f5': rtpdec: Calculate and report packet reception jitter Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13Merge commit 'abae27ed3acd0a7c54f11760c5be2d2653c4edf8'Michael Niedermayer
* commit 'abae27ed3acd0a7c54f11760c5be2d2653c4edf8': rtpdec: Fix the calculation of expected number of packets fate: vp3: Fix fate-vp3-coeff-level64 test dependencies Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13Merge commit '4d3b144c5ea824193019019d33740a1ae9e0bb69'Michael Niedermayer
* commit '4d3b144c5ea824193019019d33740a1ae9e0bb69': fate: cosmetics: Order some test entries Conflicts: tests/fate/lossless-video.mak tests/fate/microsoft.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13pthread: Do not use a half updated context as master for deallocation.Michael Niedermayer
Fixes assertion failure Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13dvdsubenc: use unsigned shifts to avoid shifting into the sign bitMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-13dvdsubdec: use unsigned shifts to avoid shifting into the sign bitMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12swr: work with 4 noise shaping coeffs at a timeMichael Niedermayer
63->38 kcycles Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12swr/noise_shaping_data: pad coeffs to multiple of 4 when they are 1 belowMichael Niedermayer
This allows using code working with 4 at a time Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12rtpdec: Send a valid "delay since SR" value in the RTCP RR packetsMartin Storsjö
Previously, we always signalled a zero time since the last RTCP SR, which is dubious. The code also suggested that this would be the difference in RTP NTP time units (32.32 fixed point), while it actually is in in 1/65536 second units. (RFC 3550 section 6.4.1) Signed-off-by: Martin Storsjö <martin@martin.st>
2013-01-12rtpdec: Calculate and report packet reception jitterMartin Storsjö
This brings back some code that was added originally in 4a6cc061 but never was used, and was removed as unused in 4cc843fa. The code is updated to actually work and is tested to return sane values. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-01-12rtpdec: Fix the calculation of expected number of packetsMartin Storsjö
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ö <martin@martin.st>
2013-01-12dec/developer: Add Valgrind / Address Sanitizer to the patch checklistMichael Niedermayer
Reviewed-by: saste Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12swr: use a local variable for ns_coeffsMichael Niedermayer
maybe a very tiny bit faster Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12swr: use local variable for ns_errorsMichael Niedermayer
71 -> 63 kcycles Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12swr: minor simplification for the noise shaping pos updateMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12lavfi/aevalsrc: try to honor specified durationMatthieu Bouron
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 <stefasab@gmail.com>
2013-01-12fate: cosmetics: Order some test entriesDiego Biurrun
2013-01-12fate: vp3: Fix fate-vp3-coeff-level64 test dependenciesDiego Biurrun
Also rename the test to reflect that the video track is Theora, not VP3.
2013-01-12frmdec: do not abuse ff_codec_get_id()Paul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-01-12lavf: use avpriv_find_pix_fmt instead of ff_Michael Niedermayer
Found-by: durandal_1707 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12lavc: ff_find_pix_fmt ->avprivMichael Niedermayer
Found-by: durandal_1707 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* 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 <michaelni@gmx.at>
2013-01-12Merge commit 'f61272f0efd80da437570aad2c40e00f9d3f4fe6'Michael Niedermayer
* commit 'f61272f0efd80da437570aad2c40e00f9d3f4fe6': ratecontrol: K&R cosmetic formatting rtpdec: Remove a useless todo comment Conflicts: libavcodec/ratecontrol.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12Merge commit '54cb096ee4558b3bfc28c2fcd6418ce82dc39fe1'Michael Niedermayer
* commit '54cb096ee4558b3bfc28c2fcd6418ce82dc39fe1': rtsp: Remove an outdated comment rtsp: Remove references to weirdly named variables in other files Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-12Merge commit 'c44784c9bb9d0ddf5d39d0dfa640816a57b8f457'Michael Niedermayer
* commit 'c44784c9bb9d0ddf5d39d0dfa640816a57b8f457': rtp: Rename a static variable to normal naming conventions rtp: Cosmetic cleanup Merged-by: Michael Niedermayer <michaelni@gmx.at>