- 14 Feb, 2011 17 commits
-
-
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 16 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)
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Carl Eugen Hoyos authored
While 4 works for some samples, 3 is the correct value since 8x8 DCT is used by (m)jpeg.
-
- 11 Feb, 2011 6 commits
-
-
Nicolas George authored
Also: cosmetic: split this overly long line
-
Jason Garrett-Glaser authored
Merge find_near_mvs and mv bitstream decoding: don't do prediction steps until absolutely necessary. (cherry picked from commit f3d09d44)
-
Justin Ruggles authored
s->windowed_samples will always have a range of [-32767,32767] due to the window function, so the return value from log2_tab() will always be in the range [0,14]. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 626264b1)
-
Justin Ruggles authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit d4582889)
-
Anton Khirnov authored
This code will be later split out into a function which takes a 'size' argument, so I'm keeping the name 'sizeX' here. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 0b1d291a)
-
Anton Khirnov authored
Only trivial splits are done here -- i.e. copy/paste + reindent + missing variable declarations. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit c1fea230)
-