]> git.sesse.net Git - ffmpeg/log
ffmpeg
14 years agoCosmetics: merge "} else" and "if (...) {" lines, less confusing.
Stefano Sabatini [Sun, 27 Jun 2010 22:35:42 +0000 (22:35 +0000)]
Cosmetics: merge "} else" and "if (...) {" lines, less confusing.

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

14 years agoReindent after the last commit.
Stefano Sabatini [Sun, 27 Jun 2010 22:35:39 +0000 (22:35 +0000)]
Reindent after the last commit.

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

14 years agoExtend color syntax, make it accept an alpha component specifier.
Stefano Sabatini [Sun, 27 Jun 2010 22:35:35 +0000 (22:35 +0000)]
Extend color syntax, make it accept an alpha component specifier.

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

14 years agoRename ColorEntry.rgba_color to rgb_color and do not reserve a fourth
Stefano Sabatini [Sun, 27 Jun 2010 22:35:32 +0000 (22:35 +0000)]
Rename ColorEntry.rgba_color to rgb_color and do not reserve a fourth
byte for the alpha component, as it is never used, clarify the code
and prevent bad usage of it.

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

14 years agovaapi: add missing #include "h263.h"
Måns Rullgård [Sun, 27 Jun 2010 20:18:28 +0000 (20:18 +0000)]
vaapi: add missing #include "h263.h"

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

14 years agora288: convert VLAs to fixed size
Måns Rullgård [Sun, 27 Jun 2010 19:30:31 +0000 (19:30 +0000)]
ra288: convert VLAs to fixed size

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

14 years agoChange type of zz_table to uint8_t to match the scantables it points to.
Reimar Döffinger [Sun, 27 Jun 2010 19:27:08 +0000 (19:27 +0000)]
Change type of zz_table to uint8_t to match the scantables it points to.

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

14 years agoAdd a const declaration, fixing a warning
Eli Friedman [Sun, 27 Jun 2010 19:03:59 +0000 (19:03 +0000)]
Add a const declaration, fixing a warning

Patch by Eli Friedman, eli dot friedman at gmail

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

14 years agoFix clang warning, make initialization more readable
Eli Friedman [Sun, 27 Jun 2010 19:02:15 +0000 (19:02 +0000)]
Fix clang warning, make initialization more readable

Patch by Eli Friedman, eli dot friedman at gmail

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

14 years agoRemove an unused label, fixing a warning
Eli Friedman [Sun, 27 Jun 2010 17:51:17 +0000 (17:51 +0000)]
Remove an unused label, fixing a warning

Patch by Eli Friedman, eli dot friedman at gmail

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

14 years agoAdd proper const declaration to a cast, fixes a warning
Eli Friedman [Sun, 27 Jun 2010 17:33:52 +0000 (17:33 +0000)]
Add proper const declaration to a cast, fixes a warning

Patch by Eli Friedman, eli dot friedman at gmail

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

14 years agoAdd const to some pointer parameters.
Eli Friedman [Sun, 27 Jun 2010 15:11:38 +0000 (15:11 +0000)]
Add const to some pointer parameters.

Patch by Eli Friedman,  eli D friedman A gmail

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

14 years agoAdd myself as maintainer for table generation code.
Reimar Döffinger [Sun, 27 Jun 2010 14:34:00 +0000 (14:34 +0000)]
Add myself as maintainer for table generation code.

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

14 years agoUpdate tablegen documentation for WRITE_ARRAY macro.
Reimar Döffinger [Sun, 27 Jun 2010 14:31:50 +0000 (14:31 +0000)]
Update tablegen documentation for WRITE_ARRAY macro.

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

14 years agoMake implicit function declarations an error
Måns Rullgård [Sun, 27 Jun 2010 14:16:54 +0000 (14:16 +0000)]
Make implicit function declarations an error

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

14 years agoMake ff_url_split() public
Måns Rullgård [Sun, 27 Jun 2010 14:16:46 +0000 (14:16 +0000)]
Make ff_url_split() public

ff_url_split() is retained as an alias, as it was used by ffserver,
to avoid breaking ABI compatibility with it.

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

14 years agotablegen: implement and use WRITE_ARRAY macros
Diego Pettenò [Sun, 27 Jun 2010 12:21:12 +0000 (12:21 +0000)]
tablegen: implement and use WRITE_ARRAY macros

Two macros (WRITE_ARRAY and WRITE_ARRAY_2D) take the prefix (modifiers)
(not all tables are static, and they might not be constant either), the
type, and the name of the array. It'll be copied with same name and type,
and with the correct size of the currently-defined object.

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

14 years agotableprint: use the type name as-is for the functions' names.
Diego Pettenò [Sun, 27 Jun 2010 12:20:39 +0000 (12:20 +0000)]
tableprint: use the type name as-is for the functions' names.

This drops one parameter from the functions' macros, and require structures
to be typedeffed, but ensures that it is possible to map 1-to-1 the type to
the function name.

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

14 years agoadpcm: convert VLAs to malloc/free
Måns Rullgård [Sun, 27 Jun 2010 09:44:10 +0000 (09:44 +0000)]
adpcm: convert VLAs to malloc/free

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

14 years agoFix libvorbis encoding with more than 2 channels
James Darnley [Sun, 27 Jun 2010 09:25:05 +0000 (09:25 +0000)]
Fix libvorbis encoding with more than 2 channels
Fixes issue 1325.

Patch by James Darnley, james dot darnley at gmail

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

14 years agoFix implicit cast warning
Eli Friedman [Sun, 27 Jun 2010 09:07:35 +0000 (09:07 +0000)]
Fix implicit cast warning

Patch by Eli Friedman, eli dot friedman at gmail

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

14 years agoFix build without yasm
David Conrad [Sun, 27 Jun 2010 02:52:43 +0000 (02:52 +0000)]
Fix build without yasm

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

14 years agoFirst shot at VP8 optimizations:
Jason Garrett-Glaser [Sun, 27 Jun 2010 02:01:45 +0000 (02:01 +0000)]
First shot at VP8 optimizations:
- MMXEXT, SSE2 and SSSE3 MC functions
- MMX and SSE4 IDCT dc_add functions

Patch by Jason Garrett-Glaser <darkshikari gmail com> and myself.

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

14 years agoAdd myself as VP8 and vorbisdec maintainer
David Conrad [Sun, 27 Jun 2010 01:46:34 +0000 (01:46 +0000)]
Add myself as VP8 and vorbisdec maintainer

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

14 years agoVP8 bilinear filter
David Conrad [Sun, 27 Jun 2010 01:46:29 +0000 (01:46 +0000)]
VP8 bilinear filter

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

14 years agovorbisdec: Take channels into account when checking against residue overflow
David Conrad [Sun, 27 Jun 2010 01:46:23 +0000 (01:46 +0000)]
vorbisdec: Take channels into account when checking against residue overflow

Fixes issue1969

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

14 years agovorbisdec: Fix header parsing with no floor1 partitions
David Conrad [Sun, 27 Jun 2010 01:46:20 +0000 (01:46 +0000)]
vorbisdec: Fix header parsing with no floor1 partitions

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

14 years agovorbisdec: Remove write-only variable
David Conrad [Sun, 27 Jun 2010 01:46:14 +0000 (01:46 +0000)]
vorbisdec: Remove write-only variable

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

14 years agovp8: warn and request sample if upscaling specified in header
Måns Rullgård [Sun, 27 Jun 2010 00:37:43 +0000 (00:37 +0000)]
vp8: warn and request sample if upscaling specified in header

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

14 years agoRemove PPC perf counter support
Måns Rullgård [Sat, 26 Jun 2010 22:23:35 +0000 (22:23 +0000)]
Remove PPC perf counter support

This functionality is better accessed through tools like oprofile.

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

14 years agoRemove --enable-gprof flag
Måns Rullgård [Sat, 26 Jun 2010 22:23:29 +0000 (22:23 +0000)]
Remove --enable-gprof flag

gprof is far too intrusive to be of use as a profile for ffmpeg,
and it fails to build in many configurations.  Oprofile is a
better tool for profiling on Linux.

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

14 years agoRemove unnecessary ../ from include directives
Måns Rullgård [Sat, 26 Jun 2010 20:28:44 +0000 (20:28 +0000)]
Remove unnecessary ../ from include directives

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

14 years agoAdd -I flags to HOSTCFLAGS
Måns Rullgård [Sat, 26 Jun 2010 20:28:40 +0000 (20:28 +0000)]
Add -I flags to HOSTCFLAGS

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

14 years agoARM: fix build with TI compiler
Måns Rullgård [Sat, 26 Jun 2010 18:34:56 +0000 (18:34 +0000)]
ARM: fix build with TI compiler

The TI compiler defines __eabi__ to signal that ARM EABI is in use.
We must check for this in addition to the gcc macro __ARM_EABI__.

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

14 years agoAdd missing avutil.h include to libavutil/mem.h
Måns Rullgård [Sat, 26 Jun 2010 18:14:31 +0000 (18:14 +0000)]
Add missing avutil.h include to libavutil/mem.h

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

14 years agoffv1: remove VLAs
Måns Rullgård [Sat, 26 Jun 2010 15:53:25 +0000 (15:53 +0000)]
ffv1: remove VLAs

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

14 years agoshorten: remove VLA and check for buffer overflow
Måns Rullgård [Sat, 26 Jun 2010 14:34:21 +0000 (14:34 +0000)]
shorten: remove VLA and check for buffer overflow

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

14 years agoalsdec: convert VLAs to fixed size
Måns Rullgård [Sat, 26 Jun 2010 14:34:18 +0000 (14:34 +0000)]
alsdec: convert VLAs to fixed size

The maximum value of sub_blocks is 8, a safe size to always allocate on
stack.

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

14 years agopcx: convert VLAs to malloc/free
Måns Rullgård [Sat, 26 Jun 2010 14:34:15 +0000 (14:34 +0000)]
pcx: convert VLAs to malloc/free

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

14 years agolsp: convert variable-length arrays to fixed size
Måns Rullgård [Sat, 26 Jun 2010 14:34:12 +0000 (14:34 +0000)]
lsp: convert variable-length arrays to fixed size

Max LP order is defined to be 16, fixed-size buffers are OK.

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

14 years agosvq1dec: replace VLA with malloc/free
Måns Rullgård [Sat, 26 Jun 2010 14:34:08 +0000 (14:34 +0000)]
svq1dec: replace VLA with malloc/free

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

14 years agoFix brief make messages when CC etc are specified on command line
Måns Rullgård [Sat, 26 Jun 2010 10:03:30 +0000 (10:03 +0000)]
Fix brief make messages when CC etc are specified on command line

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

14 years agohuffyuv: remove unnecessary size argument from generate_len_table()
Måns Rullgård [Fri, 25 Jun 2010 19:28:10 +0000 (19:28 +0000)]
huffyuv: remove unnecessary size argument from generate_len_table()

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

14 years agoMake vp8 select h264dsp and use this to pull in mmx intrapred
Måns Rullgård [Fri, 25 Jun 2010 19:10:08 +0000 (19:10 +0000)]
Make vp8 select h264dsp and use this to pull in mmx intrapred

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

14 years agoFix compilation without --enable-gpl.
Carl Eugen Hoyos [Fri, 25 Jun 2010 19:06:29 +0000 (19:06 +0000)]
Fix compilation without --enable-gpl.

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

14 years agoReally fix r23782
Jason Garrett-Glaser [Fri, 25 Jun 2010 19:03:03 +0000 (19:03 +0000)]
Really fix r23782

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

14 years agoelbg: remove VLAs
Måns Rullgård [Fri, 25 Jun 2010 18:51:25 +0000 (18:51 +0000)]
elbg: remove VLAs

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

14 years agoFix c99ism in r23782
Jason Garrett-Glaser [Fri, 25 Jun 2010 18:48:45 +0000 (18:48 +0000)]
Fix c99ism in r23782

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

14 years agoCosmetics: Fix indentation.
Carl Eugen Hoyos [Fri, 25 Jun 2010 18:34:03 +0000 (18:34 +0000)]
Cosmetics: Fix indentation.

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

14 years agohuffyuv: make VLAs fixed size
Måns Rullgård [Fri, 25 Jun 2010 18:32:29 +0000 (18:32 +0000)]
huffyuv: make VLAs fixed size

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

14 years ago16x16 and 8x8c x86 SIMD intra pred functions for VP8 and H.264
Jason Garrett-Glaser [Fri, 25 Jun 2010 18:25:49 +0000 (18:25 +0000)]
16x16 and 8x8c x86 SIMD intra pred functions for VP8 and H.264

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

14 years agoMake VP8 DSP functions take two strides
Jason Garrett-Glaser [Fri, 25 Jun 2010 18:14:07 +0000 (18:14 +0000)]
Make VP8 DSP functions take two strides
This isn't useful for the C functions, but will allow re-using H and V functions
for HV functions without adding separate H and V wrappers.

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

14 years agoconfigure: remove superflous -lm flags
Måns Rullgård [Fri, 25 Jun 2010 15:45:08 +0000 (15:45 +0000)]
configure: remove superflous -lm flags

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

14 years agoconfigure: reverse order of -l flags
Måns Rullgård [Fri, 25 Jun 2010 15:45:04 +0000 (15:45 +0000)]
configure: reverse order of -l flags

Adding new libs to the front of the list allows them to resolve
symbols against previously added ones.

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

14 years agoconfigure: remove unused flag save/restore functions
Måns Rullgård [Fri, 25 Jun 2010 15:45:01 +0000 (15:45 +0000)]
configure: remove unused flag save/restore functions

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

14 years agoconfigure: simplify append function
Måns Rullgård [Fri, 25 Jun 2010 15:44:58 +0000 (15:44 +0000)]
configure: simplify append function

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

14 years agoconfigure: simplify check_lib function
Måns Rullgård [Fri, 25 Jun 2010 15:44:55 +0000 (15:44 +0000)]
configure: simplify check_lib function

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

14 years agoconfigure: remove unused function check_foo_config
Måns Rullgård [Fri, 25 Jun 2010 15:44:52 +0000 (15:44 +0000)]
configure: remove unused function check_foo_config

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

14 years agotwinvq: remove VLAs
Måns Rullgård [Fri, 25 Jun 2010 13:43:55 +0000 (13:43 +0000)]
twinvq: remove VLAs

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

14 years agorv34: kill VLAs
Måns Rullgård [Fri, 25 Jun 2010 08:19:20 +0000 (08:19 +0000)]
rv34: kill VLAs

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

14 years agortpdec_mpeg4: Rename PayloadContext to be consistently 'data'
Josh Allmann [Fri, 25 Jun 2010 08:03:52 +0000 (08:03 +0000)]
rtpdec_mpeg4: Rename PayloadContext to be consistently 'data'

Patch by Josh Allmann, joshua dot allmann at gmail

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

14 years agoRTSP, rtpdec: Move RTPPayloadData into rtpdec_mpeg4 and remove all references to...
Josh Allmann [Fri, 25 Jun 2010 08:02:50 +0000 (08:02 +0000)]
RTSP, rtpdec: Move RTPPayloadData into rtpdec_mpeg4 and remove all references to rtp_payload_data in rtpdec and rtsp

Patch by Josh Allmann, joshua dot allmann at gmail

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

14 years agortpdec: Move AAC depacketization code in rtpdec to a proper payload handler
Josh Allmann [Fri, 25 Jun 2010 08:01:20 +0000 (08:01 +0000)]
rtpdec: Move AAC depacketization code in rtpdec to a proper payload handler

Patch by Josh Allmann, joshua dot allmann at gmail

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

14 years agoRTSP: Move more SDP/FMTP stuff from rtsp.c to rtpdec_mpeg4.c
Josh Allmann [Fri, 25 Jun 2010 08:00:05 +0000 (08:00 +0000)]
RTSP: Move more SDP/FMTP stuff from rtsp.c to rtpdec_mpeg4.c

Patch by Josh Allmann, joshua dot allmann at gmail

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

14 years agoRTSP: Decouple MPEG-4 and AAC specific parts from rtsp.c
Josh Allmann [Fri, 25 Jun 2010 07:58:38 +0000 (07:58 +0000)]
RTSP: Decouple MPEG-4 and AAC specific parts from rtsp.c

Patch by Josh Allmann, joshua dot allmann at gmail

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

14 years agoRTSP: Remove skip_spaces in favor of strspn
Josh Allmann [Fri, 25 Jun 2010 07:56:45 +0000 (07:56 +0000)]
RTSP: Remove skip_spaces in favor of strspn

Patch by Josh Allmann, joshua dot allmann at gmail

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

14 years agoPrint a space after the AVClass prefix.
Jai Menon [Fri, 25 Jun 2010 04:36:17 +0000 (04:36 +0000)]
Print a space after the AVClass prefix.
This improves readability a bit.

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

14 years agoavienc : Avoid creating invalid AVI files when muxing subtitle streams
Jai Menon [Fri, 25 Jun 2010 04:29:02 +0000 (04:29 +0000)]
avienc : Avoid creating invalid AVI files when muxing subtitle streams
other than XSUB.

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

14 years agofix typo in vp8 decoder error message
Jason Garrett-Glaser [Fri, 25 Jun 2010 04:23:45 +0000 (04:23 +0000)]
fix typo in vp8 decoder error message

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

14 years agoImprove mov atom parsing debug message, print parent atom and size in decimal
Baptiste Coudurier [Fri, 25 Jun 2010 01:19:03 +0000 (01:19 +0000)]
Improve mov atom parsing debug message, print parent atom and size in decimal

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

14 years agofate: add vp8 tests
Måns Rullgård [Thu, 24 Jun 2010 22:13:52 +0000 (22:13 +0000)]
fate: add vp8 tests

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

14 years agoconfigure: use warn function for unrecognised --cc and --arch settings
Måns Rullgård [Thu, 24 Jun 2010 20:49:39 +0000 (20:49 +0000)]
configure: use warn function for unrecognised --cc and --arch settings

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

14 years agoconfigure: warn about missing yasm
Måns Rullgård [Thu, 24 Jun 2010 20:49:37 +0000 (20:49 +0000)]
configure: warn about missing yasm

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

14 years agoconfigure: add 'warn' function
Måns Rullgård [Thu, 24 Jun 2010 20:49:32 +0000 (20:49 +0000)]
configure: add 'warn' function

The 'warn' function records a warning message for display after other
informational messages.

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

14 years agotta: replace potentially huge VLAs with malloc/free in context
Måns Rullgård [Thu, 24 Jun 2010 18:17:12 +0000 (18:17 +0000)]
tta: replace potentially huge VLAs with malloc/free in context

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

14 years agoRemove typo: s/ingore/ignore/
Luca Barbato [Thu, 24 Jun 2010 17:59:49 +0000 (17:59 +0000)]
Remove typo: s/ingore/ignore/

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

14 years agoSet an opaque alpha value when decoding rgba ffv1.
Thad Ward [Thu, 24 Jun 2010 15:22:33 +0000 (15:22 +0000)]
Set an opaque alpha value when decoding rgba ffv1.
Patch by Thad Ward coderjoe69¤yahoo°com

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

14 years agoasfdec: ensure number of streams is within bounds; remove VLA in asf_read_pts()
Måns Rullgård [Thu, 24 Jun 2010 15:10:06 +0000 (15:10 +0000)]
asfdec: ensure number of streams is within bounds; remove VLA in asf_read_pts()

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

14 years agoRemove VLA in ff_kbd_window_init, limit window size to 1024
Måns Rullgård [Thu, 24 Jun 2010 09:42:34 +0000 (09:42 +0000)]
Remove VLA in ff_kbd_window_init, limit window size to 1024

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

14 years agovp6: convert VLA to fixed size
Måns Rullgård [Thu, 24 Jun 2010 09:02:44 +0000 (09:02 +0000)]
vp6: convert VLA to fixed size

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

14 years agoFix compilation on x64.
Vitor Sessak [Thu, 24 Jun 2010 08:53:32 +0000 (08:53 +0000)]
Fix compilation on x64.

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

14 years agoFix asm constraints in apply_window()
Vitor Sessak [Thu, 24 Jun 2010 08:46:47 +0000 (08:46 +0000)]
Fix asm constraints in apply_window()

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

14 years agoalac: change VLAs to fixed size
Måns Rullgård [Thu, 24 Jun 2010 08:26:40 +0000 (08:26 +0000)]
alac: change VLAs to fixed size

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

14 years agoSSE-optimized MP3 floating point windowing functions
Vitor Sessak [Thu, 24 Jun 2010 07:44:50 +0000 (07:44 +0000)]
SSE-optimized MP3 floating point windowing functions

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

14 years agoCorrectly return EOF for smacker videos
Alexei Svitkine [Thu, 24 Jun 2010 06:55:53 +0000 (06:55 +0000)]
Correctly return EOF for smacker videos

Patch by Alexei Svitkine, alexei dot svitkine at gmail

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

14 years agoFix dependencies for the ra_144 encoder
Francesco Lavra [Thu, 24 Jun 2010 06:53:35 +0000 (06:53 +0000)]
Fix dependencies for the ra_144 encoder

Patch by Francesco Lavra, francescolavra at interfree dot it

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

14 years agosnow: remove unused parameter to mc_block()
Måns Rullgård [Wed, 23 Jun 2010 23:44:48 +0000 (23:44 +0000)]
snow: remove unused parameter to mc_block()

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

14 years agoavoid conditional and division in chroma MV calculation
Stefan Gehrer [Wed, 23 Jun 2010 21:45:26 +0000 (21:45 +0000)]
avoid conditional and division in chroma MV calculation

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

14 years agoflacenc: convert VLA to fixed size
Måns Rullgård [Wed, 23 Jun 2010 21:22:56 +0000 (21:22 +0000)]
flacenc: convert VLA to fixed size

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

14 years agoMove float-specific function to mpegaudiodec_float.c
Vitor Sessak [Wed, 23 Jun 2010 20:45:36 +0000 (20:45 +0000)]
Move float-specific function to mpegaudiodec_float.c

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

14 years agoRemove pointless condition in #if
Vitor Sessak [Wed, 23 Jun 2010 20:43:37 +0000 (20:43 +0000)]
Remove pointless condition in #if

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

14 years agoFix alphabetization of the CONFIG_HARDCODED_TABLES Makefile section.
Alex Converse [Wed, 23 Jun 2010 19:32:02 +0000 (19:32 +0000)]
Fix alphabetization of the CONFIG_HARDCODED_TABLES Makefile section.

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

14 years agoaactab: Tablegenify ff_aac_pow2sf_tab.
Alex Converse [Wed, 23 Jun 2010 19:30:01 +0000 (19:30 +0000)]
aactab: Tablegenify ff_aac_pow2sf_tab.

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

14 years agoUpdate x264asm header files to latest versions.
Jason Garrett-Glaser [Wed, 23 Jun 2010 19:20:46 +0000 (19:20 +0000)]
Update x264asm header files to latest versions.
Modify the asm accordingly.
GLOBAL is now no longoer necessary for PIC-compliant loads.

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

14 years agoFix a typo, spotted by Diego.
Ronald S. Bultje [Wed, 23 Jun 2010 13:02:05 +0000 (13:02 +0000)]
Fix a typo, spotted by Diego.

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

14 years agoAdd missing changelog entry for VP8 decoder.
Ronald S. Bultje [Wed, 23 Jun 2010 13:01:35 +0000 (13:01 +0000)]
Add missing changelog entry for VP8 decoder.

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

14 years agoAdd required #includes to pass 'make checkheaders'.
Diego Biurrun [Wed, 23 Jun 2010 11:44:07 +0000 (11:44 +0000)]
Add required #includes to pass 'make checkheaders'.

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

14 years agoReindent
Martin Storsjö [Wed, 23 Jun 2010 11:26:43 +0000 (11:26 +0000)]
Reindent

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

14 years agoAdd all required includes to avio.h
Martin Storsjö [Wed, 23 Jun 2010 11:26:33 +0000 (11:26 +0000)]
Add all required includes to avio.h

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

14 years agoEnable pthreads automatically unless w32threads is requested
Måns Rullgård [Wed, 23 Jun 2010 02:13:54 +0000 (02:13 +0000)]
Enable pthreads automatically unless w32threads is requested

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