OSDN Git Service

android-x86/external-ffmpeg.git
14 years agoMake 'stats' a bool option again.
Benoit Fouet [Tue, 4 Aug 2009 09:26:33 +0000 (09:26 +0000)]
Make 'stats' a bool option again.
To disable stats, use -nostats option.

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

14 years agoUpdate x264 asm code to latest to add support for 64-bit Windows.
John Adcock [Tue, 4 Aug 2009 07:42:55 +0000 (07:42 +0000)]
Update x264 asm code to latest to add support for 64-bit Windows.
Use the new x86inc features to support 64-bit Windows on all non-x264 nasm
assembly code as well.
Patch by John Adcock, dscaler.johnad AT googlemail DOT com.
Win64 changes originally by Anton Mitrofanov.
x86util changes mostly by Holger Lubitz.

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

14 years agoSplit RV10 encoder off into its own file.
Diego Biurrun [Mon, 3 Aug 2009 23:22:46 +0000 (23:22 +0000)]
Split RV10 encoder off into its own file.

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

14 years agoSplit RV20 encoder into its own file.
Diego Biurrun [Mon, 3 Aug 2009 23:07:08 +0000 (23:07 +0000)]
Split RV20 encoder into its own file.

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

14 years agocosmetics: add more detailed information to the documentation for
Justin Ruggles [Mon, 3 Aug 2009 22:05:31 +0000 (22:05 +0000)]
cosmetics: add more detailed information to the documentation for
decode_band_structure().

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

14 years agoCosmetic: Reindent after last commit
Jeff Downs [Mon, 3 Aug 2009 17:55:02 +0000 (17:55 +0000)]
Cosmetic: Reindent after last commit

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

14 years agoRevert r18344. Fixes at least issue 1218, 1221, and 1187), see master
Jeff Downs [Mon, 3 Aug 2009 17:54:11 +0000 (17:54 +0000)]
Revert r18344.  Fixes at least issue 1218, 1221, and 1187), see master
issue 1221 for details.
Briefly, out of bounds field mvs in field pictures would cause a crash.

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

14 years agoCorrect the sign of the arithmetic in ff_celp_lp_zero_synthesis_filterf()
Colin McQuillan [Mon, 3 Aug 2009 17:15:01 +0000 (17:15 +0000)]
Correct the sign of the arithmetic in ff_celp_lp_zero_synthesis_filterf()

Patch by Colin McQuillan ( m.niloc googlemail com )

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

14 years agoMove AVCodec declarations for RV10/20 from mpegvideo_enc.c to rv10.c.
Diego Biurrun [Mon, 3 Aug 2009 15:23:53 +0000 (15:23 +0000)]
Move AVCodec declarations for RV10/20 from mpegvideo_enc.c to rv10.c.
It is better to keep the declarations in conditionally compiled places.

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

14 years agoHandle noX for OPT_BOOL X.
Benoit Fouet [Mon, 3 Aug 2009 09:24:39 +0000 (09:24 +0000)]
Handle noX for OPT_BOOL X.

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

14 years agoExpose QCELP's floating-point LSP-to-LPC function
Colin McQuillan [Mon, 3 Aug 2009 08:37:02 +0000 (08:37 +0000)]
Expose QCELP's floating-point LSP-to-LPC function
qcelp_lsp exported a single function, ff_acelp_lspd2lpc, which was not
specific to qcelp. It can be kept with its fixed-point version
ff_acelp_lsp2lpc in lpc.c.

Patch by Colin McQuillan ( m.niloc googlemail com )

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

14 years agoMake the LSP naming more consistent
Colin McQuillan [Mon, 3 Aug 2009 08:31:20 +0000 (08:31 +0000)]
Make the LSP naming more consistent
Use the convention from lsp.c: an LSF is a frequency, an LSP is the
cosine of an LSF, and LSP functions should have an ff_acelp prefix.
Use a "d" suffix to specify doubles.

Patch by Colin McQuillan ( m.niloc googlemail com )

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

14 years agoReplace 5 with AOT_SBR when referring to the MPEG-4 audio object type.
Justin Ruggles [Mon, 3 Aug 2009 02:09:23 +0000 (02:09 +0000)]
Replace 5 with AOT_SBR when referring to the MPEG-4 audio object type.

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

14 years agoUse enums instead of int.
Ramiro Polla [Sun, 2 Aug 2009 17:42:40 +0000 (17:42 +0000)]
Use enums instead of int.

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

14 years agovfwcap: Move vfw_read_close to avoid forward declaration.
Diego Biurrun [Sun, 2 Aug 2009 17:39:10 +0000 (17:39 +0000)]
vfwcap: Move vfw_read_close to avoid forward declaration.
Patch by Diego.

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

14 years agoRemove commented-out cruft.
Diego Biurrun [Sun, 2 Aug 2009 15:10:03 +0000 (15:10 +0000)]
Remove commented-out cruft.

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

14 years agoMake XVMC mpegvideo decoder depend on mpegvideo decoder.
Diego Biurrun [Sun, 2 Aug 2009 14:47:26 +0000 (14:47 +0000)]
Make XVMC mpegvideo decoder depend on mpegvideo decoder.
It makes no sense to enable the former without the latter.

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

14 years agocosmetics: K&R coding style, prettyprinting
Diego Biurrun [Sun, 2 Aug 2009 13:35:42 +0000 (13:35 +0000)]
cosmetics: K&R coding style, prettyprinting

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

14 years agoadd approved hunks of the wmapro decoder
Sascha Sommer [Sun, 2 Aug 2009 12:57:07 +0000 (12:57 +0000)]
add approved hunks of the wmapro decoder

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

14 years agocosmetics: K&R coding style
Diego Biurrun [Sun, 2 Aug 2009 10:50:59 +0000 (10:50 +0000)]
cosmetics: K&R coding style

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

14 years agocosmetics: K&R coding style
Diego Biurrun [Sun, 2 Aug 2009 10:34:30 +0000 (10:34 +0000)]
cosmetics: K&R coding style

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

14 years agocosmetics, reindent
Baptiste Coudurier [Sun, 2 Aug 2009 08:47:02 +0000 (08:47 +0000)]
cosmetics, reindent

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

14 years agocosmetics, reindent
Baptiste Coudurier [Sun, 2 Aug 2009 08:46:43 +0000 (08:46 +0000)]
cosmetics, reindent

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

14 years agofix jpeg parser when PARSER_FLAG_COMPLETE_FRAMES is set
Baptiste Coudurier [Sun, 2 Aug 2009 08:46:11 +0000 (08:46 +0000)]
fix jpeg parser when PARSER_FLAG_COMPLETE_FRAMES is set

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

14 years agoFix regression when converting to nv12/nv21.
Guennadi Liakhovetski [Sat, 1 Aug 2009 21:30:36 +0000 (21:30 +0000)]
Fix regression when converting to nv12/nv21.

Patch by Guennadi Liakhovetski,  g D liakhovetski A gmx D de

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

14 years agoRTMP needs tcp_protocol
Måns Rullgård [Fri, 31 Jul 2009 07:40:35 +0000 (07:40 +0000)]
RTMP needs tcp_protocol

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

14 years agoRTMP protocol support (as a client)
Kostya Shishkov [Fri, 31 Jul 2009 06:49:36 +0000 (06:49 +0000)]
RTMP protocol support (as a client)

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

14 years agoMake av_always_inline a no-op when --disable-optimizations is supplied to
Jeff Downs [Thu, 30 Jul 2009 22:41:05 +0000 (22:41 +0000)]
Make av_always_inline a no-op when --disable-optimizations is supplied to
configure

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

14 years agoIncrease audio queue size in FFplay so files with big audio/video delay
Baptiste Coudurier [Thu, 30 Jul 2009 22:19:45 +0000 (22:19 +0000)]
Increase audio queue size in FFplay so files with big audio/video delay
like mov can play nicely.

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

14 years agoRevert addition of '#undef av_always_inline' to config.h in the small case.
Diego Biurrun [Thu, 30 Jul 2009 21:58:43 +0000 (21:58 +0000)]
Revert addition of '#undef av_always_inline' to config.h in the small case.
Instead, #include config.h at the top of common.h so that av_always_inline
does not get doubly defined.

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

14 years agoDisplay stats by default in FFplay and increase refresh time.
Baptiste Coudurier [Thu, 30 Jul 2009 21:54:50 +0000 (21:54 +0000)]
Display stats by default in FFplay and increase refresh time.
Change -stats cli option to take int, so stats can be disabled.

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

14 years agoMark conditionally used variable T2 as av_unused; avoids the warning:
Diego Biurrun [Thu, 30 Jul 2009 21:21:30 +0000 (21:21 +0000)]
Mark conditionally used variable T2 as av_unused; avoids the warning:
libavutil/sha.c:183: warning: unused variable `T2'

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

14 years agoChange av_log() calls surrounded by '#ifdef DEBUG' into dprintf macros.
Diego Biurrun [Thu, 30 Jul 2009 21:00:08 +0000 (21:00 +0000)]
Change av_log() calls surrounded by '#ifdef DEBUG' into dprintf macros.

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

14 years agoRemove unused debug av_log() calls.
Diego Biurrun [Thu, 30 Jul 2009 20:57:41 +0000 (20:57 +0000)]
Remove unused debug av_log() calls.

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

14 years agoUndefine av_always_inline before setting it to an empty value.
Jeff Downs [Thu, 30 Jul 2009 20:28:07 +0000 (20:28 +0000)]
Undefine av_always_inline before setting it to an empty value.
This avoids a ton of redefinition warnings.
patch by Jeff Downs, heydowns borg com

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

14 years agocosmetics, remove spaces after '(' and before ')'
Baptiste Coudurier [Thu, 30 Jul 2009 19:14:57 +0000 (19:14 +0000)]
cosmetics, remove spaces after '(' and before ')'

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

14 years agoinit pes dts and pts to AV_NOPTS_VALUE, fix issue #1297
Baptiste Coudurier [Thu, 30 Jul 2009 18:29:06 +0000 (18:29 +0000)]
init pes dts and pts to AV_NOPTS_VALUE, fix issue #1297

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

14 years agovfwcap: Indent.
Ramiro Polla [Thu, 30 Jul 2009 17:31:28 +0000 (17:31 +0000)]
vfwcap: Indent.

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

14 years agovfwcap: Support compressed streams.
Ramiro Polla [Thu, 30 Jul 2009 17:29:24 +0000 (17:29 +0000)]
vfwcap: Support compressed streams.

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

14 years agovfwcap: Reorder some code to simplify next patch.
Ramiro Polla [Thu, 30 Jul 2009 17:25:15 +0000 (17:25 +0000)]
vfwcap: Reorder some code to simplify next patch.

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

14 years agovfwcap: Return PIX_FMT_NONE instead of -1 on error.
Ramiro Polla [Thu, 30 Jul 2009 16:18:33 +0000 (16:18 +0000)]
vfwcap: Return PIX_FMT_NONE instead of -1 on error.

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

14 years agovfwcap: Update error message:
Ramiro Polla [Thu, 30 Jul 2009 16:16:43 +0000 (16:16 +0000)]
vfwcap: Update error message:
- Verbose debug information is at max -v 9 now;
- Add an empty space for readability.

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

14 years agoRemove old_flags variable, which is a duplicate of the flags variable.
Ronald S. Bultje [Thu, 30 Jul 2009 15:05:33 +0000 (15:05 +0000)]
Remove old_flags variable, which is a duplicate of the flags variable.

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

14 years agoDon't use a pointer-to-flags/timestamp in ff_rm_parse_packet(); the function
Ronald S. Bultje [Thu, 30 Jul 2009 15:04:19 +0000 (15:04 +0000)]
Don't use a pointer-to-flags/timestamp in ff_rm_parse_packet(); the function
used to return packet data, which might update the flags/timestamp to be
used for the next packet data returned by the demuxer. However, that was
separated out into a new function, and the flags/timestamp are thus never
updated within ff_rm_parse_packet() anymore, and thus do not need to be
a pointer.

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

14 years agoreturn EOF in image2 demuxer
Baptiste Coudurier [Thu, 30 Jul 2009 08:21:11 +0000 (08:21 +0000)]
return EOF in image2 demuxer

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

14 years agoRemove unused variable intra_count.
Diego Biurrun [Thu, 30 Jul 2009 07:33:16 +0000 (07:33 +0000)]
Remove unused variable intra_count.

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

14 years agoPPC: fix asm operand constraints in AV_RL64
Måns Rullgård [Wed, 29 Jul 2009 19:06:55 +0000 (19:06 +0000)]
PPC: fix asm operand constraints in AV_RL64

The target register of first word loaded must be marked early-clobber.

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

14 years agoRemove pointless '#ifdef DEBUG' around dprintf macro.
Diego Biurrun [Wed, 29 Jul 2009 17:12:47 +0000 (17:12 +0000)]
Remove pointless '#ifdef DEBUG' around dprintf macro.

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

14 years agoOnly enable WMV3 decoder when it has been turned on in the build system.
Diego Biurrun [Wed, 29 Jul 2009 11:31:52 +0000 (11:31 +0000)]
Only enable WMV3 decoder when it has been turned on in the build system.

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

14 years agoDo not check for both CONFIG_VC1_DECODER and CONFIG_WMV3_DECODER,
Diego Biurrun [Wed, 29 Jul 2009 09:54:49 +0000 (09:54 +0000)]
Do not check for both CONFIG_VC1_DECODER and CONFIG_WMV3_DECODER,
the former depends upon the latter.

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

14 years agoDo not check for both CONFIG_VC1_VDPAU_DECODER and CONFIG_WMV3_VDPAU_DECODER,
Diego Biurrun [Wed, 29 Jul 2009 09:54:00 +0000 (09:54 +0000)]
Do not check for both CONFIG_VC1_VDPAU_DECODER and CONFIG_WMV3_VDPAU_DECODER,
the former depends upon the latter.

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

14 years agoDo not check for CONFIG_VC1_VAAPI_HWACCEL, the file is only
Diego Biurrun [Wed, 29 Jul 2009 09:51:51 +0000 (09:51 +0000)]
Do not check for CONFIG_VC1_VAAPI_HWACCEL, the file is only
compiled if that condition is true.

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

14 years agoStop parsing in read_header only after finding pmt, and
Baptiste Coudurier [Wed, 29 Jul 2009 02:17:08 +0000 (02:17 +0000)]
Stop parsing in read_header only after finding pmt, and
do not close pat filter so further pmt can be parsed.
Fix issue #1294.

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

14 years agorename freq to period which is more correct, patch by Niobos, niobos dot be at gmail...
Niobos [Tue, 28 Jul 2009 17:51:12 +0000 (17:51 +0000)]
rename freq to period which is more correct, patch by Niobos, niobos dot be at gmail dot com

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

14 years agoUse dprintf() instead of '#ifdef DEBUG' and av_log().
Diego Biurrun [Tue, 28 Jul 2009 12:50:32 +0000 (12:50 +0000)]
Use dprintf() instead of '#ifdef DEBUG' and av_log().

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

14 years agoReplace BUILD_{SHARED,STATIC} with CONFIG_ counterparts
Måns Rullgård [Tue, 28 Jul 2009 08:58:48 +0000 (08:58 +0000)]
Replace BUILD_{SHARED,STATIC} with CONFIG_ counterparts

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

14 years agoEnable PIC unconditionally on OpenBSD
Måns Rullgård [Tue, 28 Jul 2009 08:58:42 +0000 (08:58 +0000)]
Enable PIC unconditionally on OpenBSD

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

14 years agoconfigure: always write PIC flags to config.mak
Måns Rullgård [Tue, 28 Jul 2009 08:58:36 +0000 (08:58 +0000)]
configure: always write PIC flags to config.mak

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

14 years agoconfigure: enable PIC in per-arch section instead of separately
Måns Rullgård [Tue, 28 Jul 2009 08:58:33 +0000 (08:58 +0000)]
configure: enable PIC in per-arch section instead of separately

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

14 years agoFix typo in MinGWCE support in configure.
Martin Storsjö [Tue, 28 Jul 2009 08:50:58 +0000 (08:50 +0000)]
Fix typo in MinGWCE support in configure.
Patch by Martin Storsjö and Måns.

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

14 years agoMMX2 scaler: Remove {} block leftover from factorization in initMMX2Scaler().
Ramiro Polla [Tue, 28 Jul 2009 05:45:47 +0000 (05:45 +0000)]
MMX2 scaler: Remove {} block leftover from factorization in initMMX2Scaler().
Merge variable declarations to previous {} block and indent.

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

14 years agoMMX2 scaler: factorize initMMX2Scaler().
Ramiro Polla [Tue, 28 Jul 2009 05:42:46 +0000 (05:42 +0000)]
MMX2 scaler: factorize initMMX2Scaler().

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

14 years agoMMX2 scaler: add variable to ease factorization of initMMX2Scaler().
Ramiro Polla [Tue, 28 Jul 2009 05:41:22 +0000 (05:41 +0000)]
MMX2 scaler: add variable to ease factorization of initMMX2Scaler().

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

14 years agoIndent.
Ramiro Polla [Tue, 28 Jul 2009 05:14:47 +0000 (05:14 +0000)]
Indent.

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

14 years agoRemove duplicate horizontal scaling when there aren't enough lines in a slice
Ramiro Polla [Tue, 28 Jul 2009 05:13:36 +0000 (05:13 +0000)]
Remove duplicate horizontal scaling when there aren't enough lines in a slice
to output the dstY line.

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

14 years agoRemove useless code.
Ramiro Polla [Tue, 28 Jul 2009 04:46:39 +0000 (04:46 +0000)]
Remove useless code.
flags can never be any other kind of scaling algorithm inside this if().

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

14 years agoARM: cleaner selection of ELF-spefic assembler directives
Måns Rullgård [Mon, 27 Jul 2009 22:55:55 +0000 (22:55 +0000)]
ARM: cleaner selection of ELF-spefic assembler directives

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

14 years agoMinGWCE support in configure; networking is disabled for now.
Martin Storsjö [Mon, 27 Jul 2009 16:14:57 +0000 (16:14 +0000)]
MinGWCE support in configure; networking is disabled for now.
patch by Martin Storsjö, martin martin st and Ismail Dönmez, ismail namtrac org

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

14 years agoRemove disabled function get_num().
Diego Biurrun [Mon, 27 Jul 2009 16:10:38 +0000 (16:10 +0000)]
Remove disabled function get_num().
It is small and has been disabled and unused for more than four years.

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

14 years agoCosmetics: remove spaces between function name and arguments in declaration,
Ronald S. Bultje [Mon, 27 Jul 2009 14:32:54 +0000 (14:32 +0000)]
Cosmetics: remove spaces between function name and arguments in declaration,
and put return type ("static void") on the same line as function name.

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

14 years agoUse named initializers and use new/free_context() instead of extradata()
Colin McQuillan [Mon, 27 Jul 2009 14:29:06 +0000 (14:29 +0000)]
Use named initializers and use new/free_context() instead of extradata()
for context allocators. Patch by Colin McQuillan m niloc googlemail com.

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

14 years agoImplement support for EOS as used by WMS and other RTSP servers that do not
Ronald S. Bultje [Mon, 27 Jul 2009 14:03:53 +0000 (14:03 +0000)]
Implement support for EOS as used by WMS and other RTSP servers that do not
implement RTCP/bye. See "[PATCH] rtsp.c: EOS support" thread from a few
months back.

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

14 years agoImplement RTSP-MS/ASF packet parsing - this completes RTSP-MS support. See
Ronald S. Bultje [Mon, 27 Jul 2009 14:00:10 +0000 (14:00 +0000)]
Implement RTSP-MS/ASF packet parsing - this completes RTSP-MS support. See
discussion in "[PATCH] RTSP-MS 14/15: ASF packet parsing" thread on mailinglist.

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

14 years agoChange type of received_sigterm variable from sig_atomic_t to int,
Martin Storsjö [Mon, 27 Jul 2009 13:01:44 +0000 (13:01 +0000)]
Change type of received_sigterm variable from sig_atomic_t to int,
which is more portable (works on Windows CE).
patch by Martin Storsjö, martin martin st

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

14 years agoConditionally compile ELF-specific ARM assembly bits that fail on Windows CE.
Martin Storsjö [Mon, 27 Jul 2009 12:53:44 +0000 (12:53 +0000)]
Conditionally compile ELF-specific ARM assembly bits that fail on Windows CE.
patch by Martin Storsjö, martin martin st

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

14 years agoOnly consider -1 as an error return value for open().
Martin Storsjö [Mon, 27 Jul 2009 12:36:22 +0000 (12:36 +0000)]
Only consider -1 as an error return value for open().
This is:
 - what Posix says (-1 on error, >=0 on success)
 - fixing a bug on winCE (<0 sometimes)

Patch by Martin Storsjö: martin martin st

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

14 years agoDo not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
Ramiro Polla [Mon, 27 Jul 2009 06:47:41 +0000 (06:47 +0000)]
Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
instead.

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

14 years agoFactorize x86 fast_bilinear assembly.
Ramiro Polla [Mon, 27 Jul 2009 06:22:00 +0000 (06:22 +0000)]
Factorize x86 fast_bilinear assembly.

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

14 years agoFix assembly comments for x86 fast_bilinear so they match the C code.
Ramiro Polla [Mon, 27 Jul 2009 06:20:17 +0000 (06:20 +0000)]
Fix assembly comments for x86 fast_bilinear so they match the C code.

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

14 years agoSet subtitle type in DVD and XSUB subtitle decoders.
Janne Grunau [Sun, 26 Jul 2009 23:08:04 +0000 (23:08 +0000)]
Set subtitle type in DVD and XSUB subtitle decoders.

Patch by Janne Grunau <ja?ne-f?mpeg jannau net>.

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

14 years agoRemove unnecessary mpeg12data.o entries from OBJS- variables.
Diego Biurrun [Sun, 26 Jul 2009 21:22:57 +0000 (21:22 +0000)]
Remove unnecessary mpeg12data.o entries from OBJS- variables.

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

14 years agoRemove duplicated mpeg12data.o entries.
Diego Biurrun [Sun, 26 Jul 2009 21:04:12 +0000 (21:04 +0000)]
Remove duplicated mpeg12data.o entries.

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

14 years agoAdd handling of EAGAIN at packet boundaries. See "[PATCH] RTSP-MS 14/15:
Ronald S. Bultje [Sun, 26 Jul 2009 19:09:35 +0000 (19:09 +0000)]
Add handling of EAGAIN at packet boundaries. See "[PATCH] RTSP-MS 14/15:
ASF packet parsing" thread for discussion / reasoning.

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

14 years agoReplace WORDS_BIGENDIAN with HAVE_BIGENDIAN
Måns Rullgård [Sun, 26 Jul 2009 12:26:32 +0000 (12:26 +0000)]
Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN

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

14 years agoReplace WORDS_BIGENDIAN with HAVE_BIGENDIAN
Måns Rullgård [Sun, 26 Jul 2009 12:20:04 +0000 (12:20 +0000)]
Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN

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

15 years agofix various compilation dependencies
Aurelien Jacobs [Fri, 24 Jul 2009 21:28:44 +0000 (21:28 +0000)]
fix various compilation dependencies

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

15 years agofix compilation of cavsvideo demuxer
Aurelien Jacobs [Fri, 24 Jul 2009 21:28:03 +0000 (21:28 +0000)]
fix compilation of cavsvideo demuxer

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

15 years agoCheck for HAVE_ISATTY.
Martin Storsjö [Fri, 24 Jul 2009 00:13:59 +0000 (00:13 +0000)]
Check for HAVE_ISATTY.
Patch by Martin Storsjö <martin at martin dot st>

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

15 years agoCheck for the isatty function.
Martin Storsjö [Fri, 24 Jul 2009 00:12:55 +0000 (00:12 +0000)]
Check for the isatty function.
Patch by Martin Storsjö <martin at martin dot st>

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

15 years agoconfigure: some small simplifications
Måns Rullgård [Thu, 23 Jul 2009 23:30:54 +0000 (23:30 +0000)]
configure: some small simplifications

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

15 years agoconfigure: add some blank lines to improve readability
Måns Rullgård [Thu, 23 Jul 2009 23:30:50 +0000 (23:30 +0000)]
configure: add some blank lines to improve readability

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

15 years agoRemove unnecessary #include <unistd.h>
Måns Rullgård [Thu, 23 Jul 2009 15:23:03 +0000 (15:23 +0000)]
Remove unnecessary #include <unistd.h>

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

15 years agorefactoring: properly separate AC-3 and E-AC-3 code
Diego Biurrun [Thu, 23 Jul 2009 02:33:25 +0000 (02:33 +0000)]
refactoring: properly separate AC-3 and E-AC-3 code

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

15 years agoMake sure that eac3_decoder only gets enabled when CONFIG_EAC3_DECODER is set.
Diego Biurrun [Thu, 23 Jul 2009 00:15:23 +0000 (00:15 +0000)]
Make sure that eac3_decoder only gets enabled when CONFIG_EAC3_DECODER is set.

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

15 years agoRemove useless #include <unistd.h> from many files
Måns Rullgård [Wed, 22 Jul 2009 23:37:53 +0000 (23:37 +0000)]
Remove useless #include <unistd.h> from many files

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

15 years agocosmetics: Reorder some tables/lines to make future diffs smaller.
Diego Biurrun [Wed, 22 Jul 2009 23:33:58 +0000 (23:33 +0000)]
cosmetics: Reorder some tables/lines to make future diffs smaller.

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

15 years ago#include just the required stdint.h instead of libavutil/common.h.
Diego Biurrun [Wed, 22 Jul 2009 22:57:17 +0000 (22:57 +0000)]
#include just the required stdint.h instead of libavutil/common.h.

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

15 years agocosmetics: small typo fixes
Diego Biurrun [Wed, 22 Jul 2009 22:43:43 +0000 (22:43 +0000)]
cosmetics: small typo fixes

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

15 years agocosmetics: reindent/prettyprint after last commit
Diego Biurrun [Wed, 22 Jul 2009 22:38:26 +0000 (22:38 +0000)]
cosmetics: reindent/prettyprint after last commit

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

15 years agoOnly compile in NEON optimizations for H.264 when the H.264 decoder is enabled.
Diego Biurrun [Wed, 22 Jul 2009 22:33:33 +0000 (22:33 +0000)]
Only compile in NEON optimizations for H.264 when the H.264 decoder is enabled.

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