- 14 Feb, 2011 25 commits
-
-
Ronald S. Bultje authored
Fixes errors after a few minutes (first ping) when playing back mmst://wm.bbc.co.uk/wms/bbc7coyopa/bbc7_-_friday_0430.wma (cherry picked from commit 275189a2)
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 08a459f0)
-
Stefano Sabatini authored
The code was setting aspect ratio from the DTG active format, and was present and disabled since the creation of ffplay. See thread: Subject: [FFmpeg-devel] [PATCH] Cosmetics: adopt compact notation in disabled code. Date: Sat, 12 Feb 2011 18:46:19 +0100 Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit b7ec5cc4)
-
Alex Converse authored
It has been unused since 9d06d7bcSigned-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 916dee9f)
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit aabc2682)
-
Justin Ruggles authored
AC3DSPContext.ac3_max_msb_abs_int16() finds the maximum MSB of the absolute value of each element in an array of int16_t. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit fbb6b49d)
-
Peter Ross authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 1a973feb)
-
Anton Khirnov authored
This contains a rename from gsize->size Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 8bf6db1b)
-
Francesco Cosoleto authored
Signed-off-by: Francesco Cosoleto <cosoleto@gmail.com> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 70630e35)
-
Mans Rullgard authored
The colon operator of expr always anchors the pattern at the start of the string. An explicit ^ in the pattern has unspecified behaviour, so remove it. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 3ad464bf)
-
Mans Rullgard authored
This makes the cc_ident value, which is used in FATE reports, include all interesting parts of the gcc version string. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 5d57846b)
-
Mans Rullgard authored
This function removes leading and trailing spaces and collapses multiple spaces into one. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit bb7a22b5)
-
Loren Merritt authored
6% faster SSE FFT on Conroe, 2.5% on Penryn. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit e6b1ed69)
-
Anssi Hannula authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 3c33c0e2)
-
Anssi Hannula authored
There is a check for HAVE_BIGENDIAN when outputting the IEC 61937 stream. On big-endian systems the payload data is not byteswapped, causing in effect the outputted payload data to be in a different byte order on big-endian than on little-endian systems. However, the IEC 61937 preamble (and the final odd byte if present) is always outputted in the same byte order. This means that on big-endian systems the headers have a different byte order than the payload, preventing useful use of the output. Fix that by outputting the data in a format suitable for sending to an audio device in S16LE format by default. Output as big-endian (S16BE) is added as an AVOption. This makes the muxer output the same on all archs by default. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 57f2c9ae)
-
Anssi Hannula authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 482d98f6)
-
Peter Ross authored
This fixes visual glitches in Bink version 'b' files, as the quantization tables were not being permuted. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 23153921)
-
Peter Ross authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit cb62510c)
-
Mans Rullgard authored
When built with gcc 4.6, the MMX rgb24 to yuv conversion gives wrong output. The compiler produces this warning: libswscale/swscale_template.c:1885:5: warning: use of memory input without lvalue in asm operand 4 is deprecated Changing the memory operand to a register makes it work. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit f344903c)
-
Takashi Mochizuki authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 44b11207)
-
Stefano Sabatini authored
Make avfilter_config_links() propagate audio information of the source link if it is not explicitely set by the filter. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
This fixes several bugs like multiple outputs and -aspect mixed with -vf Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Stefano Sabatini authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Stefano Sabatini authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 13 Feb, 2011 1 commit
-
-
Michael Niedermayer authored
Fix issue2592. / mpeg4-bad-gvop.raw
-
- 12 Feb, 2011 14 commits
-
-
Vitor Sessak authored
Using doubles make the double -> int cast well defined for all the values used, with the exception of when s[i]==1.0, which is special-cased. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 47d62c96)
-
Stefano Sabatini authored
In the FAQ section "How do I encode single pictures into movies?", use -s for generating symbolic links with the ln command. The script was generating hard links, which is not likely what it was supposed to do. Fix issue 2488. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit e063f588)
-
Stefano Sabatini authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 40321376)
-
Stefano Sabatini authored
Allow make clean to remove the corresponding binaries. Fix issue 2162. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit cd6a5a57)
-
Baptiste Coudurier authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 646739a0)
-
Martin Storsjö authored
This is used for mapping AVStreams back to their corresponding RTSPStream. Since d9c0510e, the RTSPStream pointer isn't stored in AVStream->priv_data any longer, breaking this mapping from AVStreams to RTSPStreams. Also, we don't need to clear the priv_data in rdt cleanup any longer, since it isn't set to duplicate pointers. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit b2dd842d)
-
Justin Ruggles authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 74b1f968)
-
Mans Rullgard authored
The early disabling of irrelevant arch extensions is no longer required, and removing it makes dependencies involving these work as expected. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 4b884207)
-
Mans Rullgard authored
Approximately 5% faster on Cortex-A8. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit a7878c9f)
-
Mans Rullgard authored
Approximately 3% faster on Cortex-A8. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 7da48fd0)
-
Stefano Sabatini authored
Overlay documentation is still using the old unsupported syntax. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit aa8ac53b)
-
Peter Ross authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit adb1ad0d)
-
Peter Ross authored
Based on original patch by Kostya Shishkov Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit e00f41d5)
-
Anton Khirnov authored
it's not touched anywhere in ffmpeg, the code setting it was removed over two years ago (e9b78eeb). Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit b0294c80)
-