]> git.sesse.net Git - ffmpeg/log
ffmpeg
13 years agoSplit lavfi pixfmts test.
Stefano Sabatini [Sun, 1 Aug 2010 23:04:13 +0000 (23:04 +0000)]
Split lavfi pixfmts test.

Introduce the function do_lavfi_pixfmts(), and use it for generating a
pixfmts test for each different filter.

Originally committed as revision 24654 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoImplement set_ne_test_deps() and use if for the lavfi pixdesc test.
Stefano Sabatini [Sun, 1 Aug 2010 23:04:10 +0000 (23:04 +0000)]
Implement set_ne_test_deps() and use if for the lavfi pixdesc test.

Originally committed as revision 24653 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoFix suncc ident string (hopefully)
Måns Rullgård [Sun, 1 Aug 2010 16:13:12 +0000 (16:13 +0000)]
Fix suncc ident string (hopefully)

Originally committed as revision 24652 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agofate: fix non-standard use of bc
Måns Rullgård [Sun, 1 Aug 2010 15:28:42 +0000 (15:28 +0000)]
fate: fix non-standard use of bc

Originally committed as revision 24651 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agofate: fix signal name translation
Måns Rullgård [Sun, 1 Aug 2010 12:29:03 +0000 (12:29 +0000)]
fate: fix signal name translation

Originally committed as revision 24650 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agofate: make tar command configurable
Måns Rullgård [Sun, 1 Aug 2010 12:29:00 +0000 (12:29 +0000)]
fate: make tar command configurable

The 'tar' variable should be set to a command writing a tar archive
of the named files to stdout, typically "tar c" or "tar cf -"

Originally committed as revision 24649 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoSimplify lavfi-pixfmts test script
Måns Rullgård [Sun, 1 Aug 2010 11:34:59 +0000 (11:34 +0000)]
Simplify lavfi-pixfmts test script

Originally committed as revision 24648 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agolavfi-showfiltfmts: print one format per line
Måns Rullgård [Sun, 1 Aug 2010 11:34:56 +0000 (11:34 +0000)]
lavfi-showfiltfmts: print one format per line

Originally committed as revision 24647 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRemove temporary files in lavfi-pixfmts test
Måns Rullgård [Sun, 1 Aug 2010 10:47:41 +0000 (10:47 +0000)]
Remove temporary files in lavfi-pixfmts test

Originally committed as revision 24646 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoFix fate-lavfi-pixfmts test cross-compilation.
Stefano Sabatini [Sun, 1 Aug 2010 10:27:04 +0000 (10:27 +0000)]
Fix fate-lavfi-pixfmts test cross-compilation.

Add the lavfi-showfiltfmts dependency in the Makefile, and correctly
use the $target_exec and $target_path variables for invoking the
lavfi-showfiltfmts tool.

Originally committed as revision 24645 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoUse the ffmpeg specified in $ffmpeg in the pixfmts lavfi test,
Stefano Sabatini [Sun, 1 Aug 2010 10:27:00 +0000 (10:27 +0000)]
Use the ffmpeg specified in $ffmpeg in the pixfmts lavfi test,
otherwise the test will be running whatever ffmpeg is installed on the
host system.

Originally committed as revision 24644 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoPut the filter name before the pixel format name in the lavfi pixfmts
Stefano Sabatini [Sun, 1 Aug 2010 00:46:11 +0000 (00:46 +0000)]
Put the filter name before the pixel format name in the lavfi pixfmts
test output files, and add a prefix with the name of the test.
Make per-filter grouping of the generated output files easier, which
is more useful than per-pixel-format grouping.

Originally committed as revision 24643 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoIntroduce and use a variable $output in the lavfi pixfmts test code.
Stefano Sabatini [Sun, 1 Aug 2010 00:46:08 +0000 (00:46 +0000)]
Introduce and use a variable $output in the lavfi pixfmts test code.
Consistent with the lavfi pixdesc test code, and slightly improve
readability.

Originally committed as revision 24642 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoSplit the lavfi pixfmts tests in _le and _be, this is required as the
Stefano Sabatini [Sun, 1 Aug 2010 00:46:06 +0000 (00:46 +0000)]
Split the lavfi pixfmts tests in _le and _be, this is required as the
test results and references depend on machine endianess.

Originally committed as revision 24641 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRename the not yet enabled test lavfi_pix_fmts to pixfmts, which is
Stefano Sabatini [Sun, 1 Aug 2010 00:46:03 +0000 (00:46 +0000)]
Rename the not yet enabled test lavfi_pix_fmts to pixfmts, which is
simpler and consistent with the names of the other lavfi tests.

Originally committed as revision 24640 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoAdd WebM to the Matroska demuxer name.
Alex Converse [Sun, 1 Aug 2010 00:30:37 +0000 (00:30 +0000)]
Add WebM to the Matroska demuxer name.

Originally committed as revision 24639 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoUse word-writing instead of dword-writing (with two cached but otherwise
Ronald S. Bultje [Sat, 31 Jul 2010 23:13:15 +0000 (23:13 +0000)]
Use word-writing instead of dword-writing (with two cached but otherwise
unchanged bytes) in the horizontal simple loopfilter. This makes the filter
quite a bit faster in itself (~30 cycles less on Core1), probably mostly
because we don't need a complex 4x4 transpose, but only a simple byte
interleave. Also allows using pextrw on SSE4, which speeds up even more
(e.g. 25% faster on Core i7).

Originally committed as revision 24638 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agodca: fix dynrange coefficient in xch
Nick Brereton [Sat, 31 Jul 2010 22:15:59 +0000 (22:15 +0000)]
dca: fix dynrange coefficient in xch

Patch by Nick Brereton

Originally committed as revision 24637 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoswscale-test: merge declaration and initialization
Ramiro Polla [Sat, 31 Jul 2010 22:02:55 +0000 (22:02 +0000)]
swscale-test: merge declaration and initialization

Originally committed as revision 31879 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

13 years agocosmetics: rename output_* to write_*
Justin Ruggles [Sat, 31 Jul 2010 21:14:03 +0000 (21:14 +0000)]
cosmetics: rename output_* to write_*

Originally committed as revision 24634 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoSimplify verbatim mode fallback by checking the frame size before writing.
Justin Ruggles [Sat, 31 Jul 2010 21:08:53 +0000 (21:08 +0000)]
Simplify verbatim mode fallback by checking the frame size before writing.

Originally committed as revision 24632 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoChange max_framesize for small final frame.
Justin Ruggles [Sat, 31 Jul 2010 20:52:33 +0000 (20:52 +0000)]
Change max_framesize for small final frame.

Originally committed as revision 24631 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoCalculate an exact frame size before writing. Now the buffer size requirements
Justin Ruggles [Sat, 31 Jul 2010 20:32:12 +0000 (20:32 +0000)]
Calculate an exact frame size before writing.  Now the buffer size requirements
can be known exactly, so larger frame sizes can be safely encoded without buffer
overwrite.

Originally committed as revision 24630 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agocosmetics: rename find_subblock_rice_params() to find_subframe_rice_params()
Justin Ruggles [Sat, 31 Jul 2010 20:19:07 +0000 (20:19 +0000)]
cosmetics: rename find_subblock_rice_params() to find_subframe_rice_params()

Originally committed as revision 24629 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoReduce number of input parameters to find_subblock_rice_params().
Justin Ruggles [Sat, 31 Jul 2010 20:17:59 +0000 (20:17 +0000)]
Reduce number of input parameters to find_subblock_rice_params().

Originally committed as revision 24628 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years ago10l: fix bit count for frame header
Justin Ruggles [Sat, 31 Jul 2010 18:48:48 +0000 (18:48 +0000)]
10l: fix bit count for frame header

Originally committed as revision 24627 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoSimplify fallback to verbatim mode encoding.
Justin Ruggles [Sat, 31 Jul 2010 17:23:29 +0000 (17:23 +0000)]
Simplify fallback to verbatim mode encoding.

Originally committed as revision 24626 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agocosmetics: line wrap and vertical alignment
Justin Ruggles [Sat, 31 Jul 2010 17:07:24 +0000 (17:07 +0000)]
cosmetics: line wrap and vertical alignment

Originally committed as revision 24625 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoCombine calc_rice_params_fixed() and calc_rice_params_lpc() into a single
Justin Ruggles [Sat, 31 Jul 2010 17:06:10 +0000 (17:06 +0000)]
Combine calc_rice_params_fixed() and calc_rice_params_lpc() into a single
function.

Originally committed as revision 24624 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agofate: translate exit status to signal name
Måns Rullgård [Sat, 31 Jul 2010 16:53:09 +0000 (16:53 +0000)]
fate: translate exit status to signal name

Originally committed as revision 24623 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRemove unneeded wrapper function.
Justin Ruggles [Sat, 31 Jul 2010 16:50:27 +0000 (16:50 +0000)]
Remove unneeded wrapper function.

Originally committed as revision 24622 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRemove duplicate code by adding a flag for encoding in verbatim mode.
Justin Ruggles [Sat, 31 Jul 2010 16:46:32 +0000 (16:46 +0000)]
Remove duplicate code by adding a flag for encoding in verbatim mode.

Originally committed as revision 24621 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoUse av_fill_image_pointers/linesizes in place of ff_fill_pointer/linesize,
Stefano Sabatini [Sat, 31 Jul 2010 16:46:20 +0000 (16:46 +0000)]
Use av_fill_image_pointers/linesizes in place of ff_fill_pointer/linesize,
and drop the the ff_ variants at the next major bump.

Originally committed as revision 24620 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoEstimate frame size during encoding.
Justin Ruggles [Sat, 31 Jul 2010 16:37:23 +0000 (16:37 +0000)]
Estimate frame size during encoding.

Originally committed as revision 24619 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRemove x86/mmx.h. It is not used anymore and has been deprecated for years.
Vitor Sessak [Sat, 31 Jul 2010 16:20:45 +0000 (16:20 +0000)]
Remove x86/mmx.h. It is not used anymore and has been deprecated for years.

Originally committed as revision 24618 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoFix compilation with --disable-yasm. 10l to me.
Vitor Sessak [Sat, 31 Jul 2010 16:17:54 +0000 (16:17 +0000)]
Fix compilation with --disable-yasm. 10l to me.

Originally committed as revision 24617 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoAdd protocols.texi.
Stefano Sabatini [Sat, 31 Jul 2010 15:45:29 +0000 (15:45 +0000)]
Add protocols.texi.

Originally committed as revision 24616 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoConvert deinterlacing MMX code to YASM
Vitor Sessak [Sat, 31 Jul 2010 14:50:51 +0000 (14:50 +0000)]
Convert deinterlacing MMX code to YASM

Originally committed as revision 24615 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoconfigure: set subarch for ARM
Måns Rullgård [Sat, 31 Jul 2010 08:51:39 +0000 (08:51 +0000)]
configure: set subarch for ARM

Originally committed as revision 24614 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years ago100l: av_freep() needs the address of the pointer
Aurelien Jacobs [Fri, 30 Jul 2010 23:41:12 +0000 (23:41 +0000)]
100l: av_freep() needs the address of the pointer

Originally committed as revision 24613 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agocosmetics: indentation
Justin Ruggles [Fri, 30 Jul 2010 21:33:51 +0000 (21:33 +0000)]
cosmetics: indentation

Originally committed as revision 24612 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoCombine output_subframe() and output_subframes().
Justin Ruggles [Fri, 30 Jul 2010 21:32:19 +0000 (21:32 +0000)]
Combine output_subframe() and output_subframes().

Originally committed as revision 24611 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRemove unneeded variable.
Justin Ruggles [Fri, 30 Jul 2010 21:27:00 +0000 (21:27 +0000)]
Remove unneeded variable.

Originally committed as revision 24610 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agocosmetics: indentation
Justin Ruggles [Fri, 30 Jul 2010 21:07:21 +0000 (21:07 +0000)]
cosmetics: indentation

Originally committed as revision 24609 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoCombine output_subframe_verbatim() and output_subframe_lpc().
Justin Ruggles [Fri, 30 Jul 2010 21:06:38 +0000 (21:06 +0000)]
Combine output_subframe_verbatim() and output_subframe_lpc().

Originally committed as revision 24608 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoCombine and simplify output_residual() and output_subframe_lpc().
Justin Ruggles [Fri, 30 Jul 2010 20:53:02 +0000 (20:53 +0000)]
Combine and simplify output_residual() and output_subframe_lpc().

Originally committed as revision 24607 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agocosmetics: reindent
Justin Ruggles [Fri, 30 Jul 2010 20:29:03 +0000 (20:29 +0000)]
cosmetics: reindent

Originally committed as revision 24606 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoCombine and simplify output_subframe_fixed() and output_subframe_lpc().
Justin Ruggles [Fri, 30 Jul 2010 20:28:46 +0000 (20:28 +0000)]
Combine and simplify output_subframe_fixed() and output_subframe_lpc().

Originally committed as revision 24605 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoCombine and simplify output_subframe_constant() and output_subframe_verbatim().
Justin Ruggles [Fri, 30 Jul 2010 20:24:15 +0000 (20:24 +0000)]
Combine and simplify output_subframe_constant() and output_subframe_verbatim().

Originally committed as revision 24604 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoPass FlacSubframe to output_subframe_* instead of channel number.
Justin Ruggles [Fri, 30 Jul 2010 20:09:14 +0000 (20:09 +0000)]
Pass FlacSubframe to output_subframe_* instead of channel number.

Originally committed as revision 24603 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agocosmetics: change FlacEncodeContext variable name from ctx to s in several
Justin Ruggles [Fri, 30 Jul 2010 19:40:18 +0000 (19:40 +0000)]
cosmetics: change FlacEncodeContext variable name from ctx to s in several
places for consistency.

Originally committed as revision 24602 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoSet coded_frame->pts in the FLAC encoder
Justin Ruggles [Fri, 30 Jul 2010 19:18:48 +0000 (19:18 +0000)]
Set coded_frame->pts in the FLAC encoder

Originally committed as revision 24601 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoDo not need to set coded_frame->key_frame = 1 because it is already set in
Justin Ruggles [Fri, 30 Jul 2010 19:02:59 +0000 (19:02 +0000)]
Do not need to set coded_frame->key_frame = 1 because it is already set in
avcodec_alloc_frame().

Originally committed as revision 24600 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoMove debug logging of compression options to a single function.
Justin Ruggles [Fri, 30 Jul 2010 18:59:27 +0000 (18:59 +0000)]
Move debug logging of compression options to a single function.

Originally committed as revision 24599 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoAdd 2 failed memory allocation checks
Justin Ruggles [Fri, 30 Jul 2010 18:34:39 +0000 (18:34 +0000)]
Add 2 failed memory allocation checks

Originally committed as revision 24598 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agocosmetics: pretty-print flacenc.c
Justin Ruggles [Fri, 30 Jul 2010 18:30:09 +0000 (18:30 +0000)]
cosmetics: pretty-print flacenc.c

Originally committed as revision 24597 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRemove mostly unnecessary rtpdec_*.h files, store the declarations in one file
Martin Storsjö [Fri, 30 Jul 2010 12:04:27 +0000 (12:04 +0000)]
Remove mostly unnecessary rtpdec_*.h files, store the declarations in one file

Originally committed as revision 24596 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoMake config_input() return AVERROR(EINVAL) in place of -1.
Stefano Sabatini [Fri, 30 Jul 2010 11:56:01 +0000 (11:56 +0000)]
Make config_input() return AVERROR(EINVAL) in place of -1.

Originally committed as revision 24595 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoCompute the max pixel step for each plane, and use it in place of
Stefano Sabatini [Fri, 30 Jul 2010 11:33:31 +0000 (11:33 +0000)]
Compute the max pixel step for each plane, and use it in place of
hardcoding that value in a switch.

More compact and correct.

Originally committed as revision 24594 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoAdd an entry for the AVFilterBuffer change of r24592.
Stefano Sabatini [Fri, 30 Jul 2010 09:06:03 +0000 (09:06 +0000)]
Add an entry for the AVFilterBuffer change of r24592.

Originally committed as revision 24593 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoResize AVFilterBuffer to hold 8 planes/linesizes worth of data.
S.N. Hemanth Meenakshisundaram [Fri, 30 Jul 2010 08:42:25 +0000 (08:42 +0000)]
Resize AVFilterBuffer to hold 8 planes/linesizes worth of data.

This is required for making AVFilterBuffer useful for storing audio
data.

Patch by S.N. Hemanth Meenakshisundaram revert <ude.dscu@skaneems>.

Originally committed as revision 24592 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRename the av_fill_image_linesize() formal parameter linesize to
Stefano Sabatini [Fri, 30 Jul 2010 08:42:22 +0000 (08:42 +0000)]
Rename the av_fill_image_linesize() formal parameter linesize to
linesizes, for consistency with the function declaration.

Originally committed as revision 24591 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoReimplement av_fill_image_pointers() using the information stored in
Stefano Sabatini [Fri, 30 Jul 2010 08:42:19 +0000 (08:42 +0000)]
Reimplement av_fill_image_pointers() using the information stored in
the pixdescs.

The new implementation is more compact, and does not need to be
updated at each pixel format addition.

Originally committed as revision 24590 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoMake av_fill_image_linesizes() return a meaningful error core rather
Stefano Sabatini [Fri, 30 Jul 2010 08:42:15 +0000 (08:42 +0000)]
Make av_fill_image_linesizes() return a meaningful error core rather
than -1.

Originally committed as revision 24589 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRename av_fill_image_linesizes() internal variables max_plane_step and
Stefano Sabatini [Fri, 30 Jul 2010 08:42:12 +0000 (08:42 +0000)]
Rename av_fill_image_linesizes() internal variables max_plane_step and
max_plane_step_comp by removing the "plane_" word, and add a comment
for explaining what they represent.

Increase readability.

Originally committed as revision 24588 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoMake avpicture_fill() directly call av_fill_image_linesizes() and
Stefano Sabatini [Fri, 30 Jul 2010 08:42:08 +0000 (08:42 +0000)]
Make avpicture_fill() directly call av_fill_image_linesizes() and
av_fill_image_pointers() rather than their wrappers ff_fill_linesize()
and ff_fill_pointer().

Improve performance.

Originally committed as revision 24587 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoMake avfilter_default_get_video_buffer() use functions in
Stefano Sabatini [Fri, 30 Jul 2010 00:29:50 +0000 (00:29 +0000)]
Make avfilter_default_get_video_buffer() use functions in
libavcore/imgutils.c rather than ff_fill_linesize() and
ff_fill_pointer().

Also remove a dependency on libavcodec.

Originally committed as revision 24586 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoMake pkgconfig_generate() explicitly return 0 in instead of returning
Jean-Daniel Dupas [Fri, 30 Jul 2010 00:05:16 +0000 (00:05 +0000)]
Make pkgconfig_generate() explicitly return 0 in instead of returning
without value when the target library is disabled.

If it does not explicitly return 0, when the last library is disabled
(swscale), the final "configure" exit value is 1, even if the
configure script is successfully executed. So it breaks scripts that
invoke configure and rely on 0 for success and 1 for failure.

Patch by Jean-Daniel Dupas reverse(<org.shadowlab@devlists>).

Originally committed as revision 24585 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoAdd APIchanges entry for the libavcore/imgutils.h addition.
Stefano Sabatini [Thu, 29 Jul 2010 23:58:04 +0000 (23:58 +0000)]
Add APIchanges entry for the libavcore/imgutils.h addition.

Originally committed as revision 24584 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoMove fill_image_linesize() and fill_image_data_ptr() from
Stefano Sabatini [Thu, 29 Jul 2010 23:44:57 +0000 (23:44 +0000)]
Move fill_image_linesize() and fill_image_data_ptr() from
libavcodec/imgconvert.c and make them public in libavcore/imgutils.h,
with the names av_fill_image_linesizes() and av_fill_image_pointers().

Originally committed as revision 24583 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoFix compilation in x86_64. I broke it with r24580.
Vitor Sessak [Thu, 29 Jul 2010 22:45:21 +0000 (22:45 +0000)]
Fix compilation in x86_64. I broke it with r24580.

Originally committed as revision 24582 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoExtend show_protocols() to make it print information about input,
Stefano Sabatini [Thu, 29 Jul 2010 22:38:28 +0000 (22:38 +0000)]
Extend show_protocols() to make it print information about input,
output, seek support.

Originally committed as revision 24581 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoTranslate libmpeg2 MMX IDCT to plain asm
Vitor Sessak [Thu, 29 Jul 2010 22:19:54 +0000 (22:19 +0000)]
Translate libmpeg2 MMX IDCT to plain asm

Originally committed as revision 24580 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years ago avidec: demux ASS and SRT tracks out of GAB2 chunks
Aurelien Jacobs [Thu, 29 Jul 2010 22:17:30 +0000 (22:17 +0000)]
 avidec: demux ASS and SRT tracks out of GAB2 chunks

Originally committed as revision 24579 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoadd seeking support in ASS demuxer
Aurelien Jacobs [Thu, 29 Jul 2010 22:10:22 +0000 (22:10 +0000)]
add seeking support in ASS demuxer

Originally committed as revision 24578 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoImplement ffprobe -show_packets.
Stefano Sabatini [Wed, 28 Jul 2010 23:17:59 +0000 (23:17 +0000)]
Implement ffprobe -show_packets.

Originally committed as revision 24577 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoCheck for udp_set_remote_url error.
Reimar Döffinger [Wed, 28 Jul 2010 16:27:16 +0000 (16:27 +0000)]
Check for udp_set_remote_url error.
Fixes issue 1784 (hang with nonsense URL/no network available).

Originally committed as revision 24575 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoWarn about "/** text" comments.
Michael Niedermayer [Wed, 28 Jul 2010 15:03:05 +0000 (15:03 +0000)]
Warn about "/** text" comments.

Originally committed as revision 24574 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoMake sure "Last message repeated" is printed.
Michael Niedermayer [Wed, 28 Jul 2010 12:08:26 +0000 (12:08 +0000)]
Make sure "Last message repeated" is printed.

Originally committed as revision 24573 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRevert commit:
Stefano Sabatini [Wed, 28 Jul 2010 10:43:02 +0000 (10:43 +0000)]
Revert commit:
  r31772 | stefano | 2010-07-23 01:01:31 +0200 (Fri, 23 Jul 2010) | 2 lines

  Prefer impersonal form over third person, for consistency with the
  rest of FFmpeg.

The change was not approved by the maintainer.

Originally committed as revision 31847 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

13 years agoAdd my GPG fingerprint and add myself as ffprobe.c maintainer.
Stefano Sabatini [Wed, 28 Jul 2010 10:29:41 +0000 (10:29 +0000)]
Add my GPG fingerprint and add myself as ffprobe.c maintainer.

Originally committed as revision 24572 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agortsp: Move the definition of SDP_MAX_SIZE up, use it in the RTSP muxer, too
Martin Storsjö [Wed, 28 Jul 2010 09:26:15 +0000 (09:26 +0000)]
rtsp: Move the definition of SDP_MAX_SIZE up, use it in the RTSP muxer, too

Originally committed as revision 24571 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRequire libswscale only if the scale filter is used.
Stefano Sabatini [Wed, 28 Jul 2010 08:56:52 +0000 (08:56 +0000)]
Require libswscale only if the scale filter is used.

Although with several limitations, lavfi can be compiled and used
without the scale filter.

Originally committed as revision 24570 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoRemove reference to the unexisting movie filter and the corresponding
Stefano Sabatini [Wed, 28 Jul 2010 08:56:49 +0000 (08:56 +0000)]
Remove reference to the unexisting movie filter and the corresponding
useless --enable-avfilter-lavf option.

Originally committed as revision 24569 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoIn wav muxer, always flush in write_trailer, fix pipe output
Baptiste Coudurier [Wed, 28 Jul 2010 08:17:02 +0000 (08:17 +0000)]
In wav muxer, always flush in write_trailer, fix pipe output

Originally committed as revision 24568 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoSkip short padding in id3v2.
Alexander Kojevnikov [Wed, 28 Jul 2010 08:06:52 +0000 (08:06 +0000)]
Skip short padding in id3v2.

Patch by Alexander Kojevnikov, alexander kojevnikov com

Originally committed as revision 24567 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoMap rc_buffer_size to and c_initial_buffer_occupancy to their libvpx
James Zern [Wed, 28 Jul 2010 08:02:35 +0000 (08:02 +0000)]
Map rc_buffer_size to and c_initial_buffer_occupancy to their libvpx
counterparts.

Patch by James Zern, jzern at google

Originally committed as revision 24566 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agortpdec_xiph: Handle the sampling SDP parameter
Josh Allmann [Wed, 28 Jul 2010 06:43:58 +0000 (06:43 +0000)]
rtpdec_xiph: Handle the sampling SDP parameter

Patch by Josh Allmann, joshua dot allmann at gmail

Originally committed as revision 24565 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoAdd extern to mxf_d10_muxer forward declaration to avoid a redundant
Reimar Döffinger [Wed, 28 Jul 2010 05:48:48 +0000 (05:48 +0000)]
Add extern to mxf_d10_muxer forward declaration to avoid a redundant
redeclaration warning.

Originally committed as revision 24564 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years ago10l: missed one reindent.
Alex Converse [Wed, 28 Jul 2010 05:40:38 +0000 (05:40 +0000)]
10l: missed one reindent.

Originally committed as revision 24563 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoReindent after last commit.
Alex Converse [Wed, 28 Jul 2010 05:38:30 +0000 (05:38 +0000)]
Reindent after last commit.

Originally committed as revision 24562 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoff_prefix non static vp56 functions.
Alex Converse [Wed, 28 Jul 2010 05:36:33 +0000 (05:36 +0000)]
ff_prefix non static vp56 functions.

Originally committed as revision 24561 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agonellymoserenc: Declare the supported sample format
Martin Storsjö [Wed, 28 Jul 2010 05:19:42 +0000 (05:19 +0000)]
nellymoserenc: Declare the supported sample format

Originally committed as revision 24560 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agob0rk3d FATE + black helicopters hissing -> rolling back to r24556 and sleeping
Pascal Massimino [Tue, 27 Jul 2010 23:09:13 +0000 (23:09 +0000)]
b0rk3d FATE + black helicopters hissing -> rolling back to r24556 and sleeping

Originally committed as revision 24559 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoperform the clipping on luma_dc_qmul[1] and chroma_qmul[0] earlier
Pascal Massimino [Tue, 27 Jul 2010 22:23:50 +0000 (22:23 +0000)]
perform the clipping on luma_dc_qmul[1] and chroma_qmul[0] earlier

Originally committed as revision 24558 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agosave some copies by moving some fields out of proba[2]
Pascal Massimino [Tue, 27 Jul 2010 22:21:49 +0000 (22:21 +0000)]
save some copies by moving some fields out of proba[2]

Originally committed as revision 24557 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoAdd my gpg fingerprint
Luca Barbato [Tue, 27 Jul 2010 22:00:47 +0000 (22:00 +0000)]
Add my gpg fingerprint

Originally committed as revision 24556 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoDCA: fix multichannel -> 2 channel downmix.
Nick Brereton [Tue, 27 Jul 2010 21:45:43 +0000 (21:45 +0000)]
DCA: fix multichannel -> 2 channel downmix.

Patch by Nick Brereton

Originally committed as revision 24555 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoSetup correct channel value when downmixing is required.
Nick Brereton [Tue, 27 Jul 2010 21:44:09 +0000 (21:44 +0000)]
Setup correct channel value when downmixing is required.

Patch by Nick Brereton

Originally committed as revision 24554 to svn://svn.ffmpeg.org/ffmpeg/trunk

13 years agoremove useless cast
Aurelien Jacobs [Tue, 27 Jul 2010 21:12:16 +0000 (21:12 +0000)]
remove useless cast

Originally committed as revision 24553 to svn://svn.ffmpeg.org/ffmpeg/trunk