platform/upstream/libav.git
14 years agoReidnent after r22795.
Sebastian Vater [Mon, 26 Apr 2010 22:39:08 +0000 (22:39 +0000)]
Reidnent after r22795.

Patch by Sebastian Vater <cdgs.basty googlemail com>.

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

14 years agoMove some branches outside looped code. Should improve the generated asm (and
Sebastian Vater [Mon, 26 Apr 2010 22:38:41 +0000 (22:38 +0000)]
Move some branches outside looped code. Should improve the generated asm (and
thus performance) slightly.

Patch by Sebastian Vater <cdgs.basty googlemail com>.

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

14 years agoSwitch some ints to unsigned (they can only have positive values, this allows
Sebastian Vater [Mon, 26 Apr 2010 22:37:13 +0000 (22:37 +0000)]
Switch some ints to unsigned (they can only have positive values, this allows
compiler to optimize some math from mul/div to shr/shl). Also add a cast to
uint32_t when calling decodeplane32(), this silences a compiler warning.
Lastly, in decodeplane8/32(), flatten a double-loop into a single-loop and
calculate the length once before entering the loop instead of during every
iteration (since it doesn't change).

Patch by Sebastian Vater <cdgs.basty googlemail com>.

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

14 years agoMake ffmpeg use print_error() to make apparent the exact cause of
Stefano Sabatini [Mon, 26 Apr 2010 22:36:55 +0000 (22:36 +0000)]
Make ffmpeg use print_error() to make apparent the exact cause of
failure happened when trying to open the output file.

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

14 years agoMake file_open() return the error code set in errno if open() fails,
Stefano Sabatini [Mon, 26 Apr 2010 22:36:51 +0000 (22:36 +0000)]
Make file_open() return the error code set in errno if open() fails,
rather than always ENOENT.

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

14 years agoImplement v4l2 input size autodetection in v4l2_read_header().
Stefano Sabatini [Mon, 26 Apr 2010 22:07:15 +0000 (22:07 +0000)]
Implement v4l2 input size autodetection in v4l2_read_header().

Move check on frame size after the device is opened and after
device_try_init() is attempted. If the provided size value is 0x0,
perform a VIDIOC_G_FMT ioctl() on the device, which sets size to the
current settings.

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

14 years agoMake two functions out of #define hackery.
Sebastian Vater [Mon, 26 Apr 2010 22:00:57 +0000 (22:00 +0000)]
Make two functions out of #define hackery.

Patch by Sebastian Vater, cdgs D basty A googlemail

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

14 years agoReindent after r22968.
Ronald S. Bultje [Mon, 26 Apr 2010 21:01:38 +0000 (21:01 +0000)]
Reindent after r22968.

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

14 years agoWrite clip-related decimal numbers into hex, where they make more sense.
Ronald S. Bultje [Mon, 26 Apr 2010 21:00:33 +0000 (21:00 +0000)]
Write clip-related decimal numbers into hex, where they make more sense.

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

14 years agoSet ARCH=c with --disable-asm, fix build
Måns Rullgård [Mon, 26 Apr 2010 20:30:02 +0000 (20:30 +0000)]
Set ARCH=c with --disable-asm, fix build

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

14 years agoReturn meaningful error codes, rather than always -1.
Stefano Sabatini [Mon, 26 Apr 2010 19:40:15 +0000 (19:40 +0000)]
Return meaningful error codes, rather than always -1.

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

14 years agoFix broken 32-bit clipping, and write numbers in hex instead of decimal so
Ronald S. Bultje [Mon, 26 Apr 2010 13:36:17 +0000 (13:36 +0000)]
Fix broken 32-bit clipping, and write numbers in hex instead of decimal so
they are easier to understand. Also give the add a 'u' postfix to silence
a pre-c99 compiler warning.

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

14 years agoMake ffprobe show stream->nb_frames if that info is known.
Robert Krüger [Sun, 25 Apr 2010 23:35:56 +0000 (23:35 +0000)]
Make ffprobe show stream->nb_frames if that info is known.

Patch by Robert Krüger $(echo kru3g3r@signal7.d3 | sed -e 's/3/e/g').

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

14 years agoRemove unnecessary width and height variables from v4l2_read_header().
Stefano Sabatini [Sun, 25 Apr 2010 18:47:40 +0000 (18:47 +0000)]
Remove unnecessary width and height variables from v4l2_read_header().

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

14 years agoMake avcodec_check_dimensions() return AVERROR(EINVAL) rather than -1
Stefano Sabatini [Sun, 25 Apr 2010 15:05:16 +0000 (15:05 +0000)]
Make avcodec_check_dimensions() return AVERROR(EINVAL) rather than -1
in case of invalid picture size.

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

14 years agoMark av_metadata_set() as deprecated, and use av_metadata_set2()
Stefano Sabatini [Sun, 25 Apr 2010 14:27:42 +0000 (14:27 +0000)]
Mark av_metadata_set() as deprecated, and use av_metadata_set2()
in its place.

av_metadata_set() is going to be dropped at the next major bump.

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

14 years agoImplement ffserver.c:report_config_error() and a macro for logging
Stefano Sabatini [Sat, 24 Apr 2010 10:39:28 +0000 (10:39 +0000)]
Implement ffserver.c:report_config_error() and a macro for logging
error messages / updating the error count.

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

14 years agoStatically initialize ffserver.c:config_filename, simplify.
Stefano Sabatini [Sat, 24 Apr 2010 10:39:25 +0000 (10:39 +0000)]
Statically initialize ffserver.c:config_filename, simplify.

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

14 years agoConsistently prefer @var{VAR} over ``VAR'' for indicating filter
Stefano Sabatini [Sat, 24 Apr 2010 10:14:05 +0000 (10:14 +0000)]
Consistently prefer @var{VAR} over ``VAR'' for indicating filter
parameters.

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

14 years ago4th try at getting ansi colors working with a default of color=yes_please.
Michael Niedermayer [Fri, 23 Apr 2010 21:27:26 +0000 (21:27 +0000)]
4th try at getting ansi colors working with a default of color=yes_please.
Colors will only be used if the TERM env var is set and NO_COLOR is not set.

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

14 years agoAdd acelp_filters.o as QCELP decoder object file.
Ronald S. Bultje [Fri, 23 Apr 2010 16:45:38 +0000 (16:45 +0000)]
Add acelp_filters.o as QCELP decoder object file.

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

14 years agoMake WMAVoice decoder depend on DCT/RDFT
Ronald S. Bultje [Fri, 23 Apr 2010 16:41:55 +0000 (16:41 +0000)]
Make WMAVoice decoder depend on DCT/RDFT

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

14 years agoWorkaround for missing llrintf()
Måns Rullgård [Fri, 23 Apr 2010 16:28:10 +0000 (16:28 +0000)]
Workaround for missing llrintf()

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

14 years agoTrying _WIN32 for win32 detection.
Michael Niedermayer [Fri, 23 Apr 2010 13:15:11 +0000 (13:15 +0000)]
Trying _WIN32 for win32 detection.

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

14 years agoMerge the 2 ANSI ESC codes.
Michael Niedermayer [Fri, 23 Apr 2010 08:11:53 +0000 (08:11 +0000)]
Merge the 2 ANSI ESC codes.

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

14 years agoReenable ANSI colors, use method from VLC as suggested by ramiro.
Michael Niedermayer [Fri, 23 Apr 2010 07:33:02 +0000 (07:33 +0000)]
Reenable ANSI colors, use method from VLC as suggested by ramiro.
Please tell us asap if this breaks for your platform & terminal.

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

14 years agoac3dec: return smaller of buf_size and frame_size instead of always returning
Justin Ruggles [Thu, 22 Apr 2010 21:43:36 +0000 (21:43 +0000)]
ac3dec: return smaller of buf_size and frame_size instead of always returning
frame_size.

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

14 years agoARM: fix build for darwin/iphone
Måns Rullgård [Thu, 22 Apr 2010 21:19:32 +0000 (21:19 +0000)]
ARM: fix build for darwin/iphone

References to external symbols in asm code need prefixes.

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

14 years agoDisable ANSI color code until we figured out how to detect ANSI support in
Michael Niedermayer [Thu, 22 Apr 2010 20:39:34 +0000 (20:39 +0000)]
Disable ANSI color code until we figured out how to detect ANSI support in
the used terminal.

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

14 years agoDisable LATM AAC in mpegts, this is not supported and produce too many
Baptiste Coudurier [Thu, 22 Apr 2010 20:34:30 +0000 (20:34 +0000)]
Disable LATM AAC in mpegts, this is not supported and produce too many
bug reports. Also warn the user about it.

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

14 years agoColoring the log with ANSI.
Michael Niedermayer [Thu, 22 Apr 2010 18:58:39 +0000 (18:58 +0000)]
Coloring the log with ANSI.
Ive checked this on black and white background and found no problem in terms
of readability.
flames welcome.

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

14 years agoFix off-by-1 error in the tag parsing code.
Jai Menon [Thu, 22 Apr 2010 12:54:50 +0000 (12:54 +0000)]
Fix off-by-1 error in the tag parsing code.

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

14 years agoSet .supported_samplerates for mpeg audio encoders.
Michael Niedermayer [Thu, 22 Apr 2010 09:41:45 +0000 (09:41 +0000)]
Set .supported_samplerates for mpeg audio encoders.

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

14 years agoMake sure ffmpeg chooses a supported samplerte if the encoder supports
Michael Niedermayer [Thu, 22 Apr 2010 09:40:51 +0000 (09:40 +0000)]
Make sure ffmpeg chooses a supported samplerte if the encoder supports
just some.

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

14 years agoMade FLIC demuxer capable of handling the videos from "X-COM: Terror from the Deep".
Tomas Härdin [Thu, 22 Apr 2010 09:04:33 +0000 (09:04 +0000)]
Made FLIC demuxer capable of handling the videos from "X-COM: Terror from the Deep".

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

14 years agoSupport VP6F in Matroska.
Christian Schmidt [Thu, 22 Apr 2010 08:57:28 +0000 (08:57 +0000)]
Support VP6F in Matroska.

Patch by Christian Schmidt, schmidt digadd de

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

14 years agoFix compilation error of ffmpeg and ffplay with --disable-avdevice.
Cyril Russo [Thu, 22 Apr 2010 08:55:23 +0000 (08:55 +0000)]
Fix compilation error of ffmpeg and ffplay with --disable-avdevice.

Patch by Cyril Russo, stage D nexvision A laposte net

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

14 years agoDo not initialize res in url_fseek(), in the case !s->seek directly
Stefano Sabatini [Wed, 21 Apr 2010 21:19:25 +0000 (21:19 +0000)]
Do not initialize res in url_fseek(), in the case !s->seek directly
return AVERROR(EPIPE) rather than the pre-defined value of res.

Slightly improve readability.

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

14 years agoWMAVoice postfilter.
Ronald S. Bultje [Wed, 21 Apr 2010 18:01:34 +0000 (18:01 +0000)]
WMAVoice postfilter.

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

14 years agoMove clipping of audio samples (for those codecs outputting float) from decoder
Ronald S. Bultje [Wed, 21 Apr 2010 17:57:48 +0000 (17:57 +0000)]
Move clipping of audio samples (for those codecs outputting float) from decoder
to the audio conversion routines.

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

14 years agoFix typo.
Jai Menon [Wed, 21 Apr 2010 17:51:37 +0000 (17:51 +0000)]
Fix typo.

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

14 years agoImplement QCELP postfilter.
Ronald S. Bultje [Wed, 21 Apr 2010 17:50:08 +0000 (17:50 +0000)]
Implement QCELP postfilter.

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

14 years agoMake the Sipr16k postfilter function write data into the target/output buffer.
Ronald S. Bultje [Wed, 21 Apr 2010 17:46:59 +0000 (17:46 +0000)]
Make the Sipr16k postfilter function write data into the target/output buffer.

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

14 years agoSplit input/output data arguments to ff_acelp_apply_order_2_transfer_function().
Ronald S. Bultje [Wed, 21 Apr 2010 17:45:24 +0000 (17:45 +0000)]
Split input/output data arguments to ff_acelp_apply_order_2_transfer_function().

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

14 years agoSplit the input/output data arguments to ff_adaptive_gain_control().
Ronald S. Bultje [Wed, 21 Apr 2010 17:43:52 +0000 (17:43 +0000)]
Split the input/output data arguments to ff_adaptive_gain_control().

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

14 years agotheora: coeff huffman codes are allowed to be up to 32 bits long (for 32 tokens)
David Conrad [Wed, 21 Apr 2010 13:19:00 +0000 (13:19 +0000)]
theora: coeff huffman codes are allowed to be up to 32 bits long (for 32 tokens)

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

14 years ago10l: do not try to unpack DTX frames in AMR-NB decoder
Vitor Sessak [Wed, 21 Apr 2010 13:05:25 +0000 (13:05 +0000)]
10l: do not try to unpack DTX frames in AMR-NB decoder

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

14 years agoFix MTV decoding on big-endian systems
Vitor Sessak [Wed, 21 Apr 2010 13:00:48 +0000 (13:00 +0000)]
Fix MTV decoding on big-endian systems

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

14 years agomov: Read QuickTime chapters
David Conrad [Wed, 21 Apr 2010 06:36:09 +0000 (06:36 +0000)]
mov: Read QuickTime chapters

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

14 years agomovenc: Write nero chapters
David Conrad [Wed, 21 Apr 2010 06:36:05 +0000 (06:36 +0000)]
movenc: Write nero chapters

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

14 years agoseems aac gets screwed up by the parser so disable it
Baptiste Coudurier [Tue, 20 Apr 2010 21:23:49 +0000 (21:23 +0000)]
seems aac gets screwed up by the parser so disable it

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

14 years agoparse stream headers for audio streams in mkv, needed for frame size
Baptiste Coudurier [Tue, 20 Apr 2010 21:19:27 +0000 (21:19 +0000)]
parse stream headers for audio streams in mkv, needed for frame size

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

14 years agoReindent / reformat some code with broken indenting.
Sebastian Vater [Tue, 20 Apr 2010 18:40:45 +0000 (18:40 +0000)]
Reindent / reformat some code with broken indenting.

Patch by Sebastian Vater <cdgs DOT basty googlemail com>.

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

14 years agoAllow setting the environment variable FFMPEG_DATADIR to locate preset files.
Robert Krüger [Tue, 20 Apr 2010 17:37:06 +0000 (17:37 +0000)]
Allow setting the environment variable FFMPEG_DATADIR to locate preset files.

Patch by Robert Krüger <krueger signal7 de>.

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

14 years agoChange a %2 to &1. Patch by Sebastian Vater <cdgs DOT basty googlemail com>.
Sebastian Vater [Tue, 20 Apr 2010 17:05:02 +0000 (17:05 +0000)]
Change a %2 to &1. Patch by Sebastian Vater <cdgs DOT basty googlemail com>.

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

14 years agoRemove explicit filename from Doxygen @file commands.
Diego Biurrun [Tue, 20 Apr 2010 14:47:31 +0000 (14:47 +0000)]
Remove explicit filename from Doxygen @file commands.

Passing an explicit filename to this command is only necessary if the
documentation in the @file block refers to a file different from the
one the block resides in.

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

14 years agoRemove explicit filename from Doxygen @file commands.
Diego Biurrun [Tue, 20 Apr 2010 14:45:34 +0000 (14:45 +0000)]
Remove explicit filename from Doxygen @file commands.

Passing an explicit filename to this command is only necessary if the
documentation in the @file block refers to a file different from the
one the block resides in.

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

14 years agoAdd missing internal.h #include for brktimegm(), fixes the warning:
Diego Biurrun [Tue, 20 Apr 2010 14:41:55 +0000 (14:41 +0000)]
Add missing internal.h #include for brktimegm(), fixes the warning:
libavformat/dvenc.c:82: warning: implicit declaration of function ‘brktimegm’

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

14 years agocosmetics: Switch Doxygen comments to JavaDoc style.
Diego Biurrun [Tue, 20 Apr 2010 14:23:00 +0000 (14:23 +0000)]
cosmetics: Switch Doxygen comments to JavaDoc style.

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

14 years agoReset RTCP timestamps after seeking, add range start offset to the packets timestamps
Martin Storsjö [Tue, 20 Apr 2010 07:38:52 +0000 (07:38 +0000)]
Reset RTCP timestamps after seeking, add range start offset to the packets timestamps

If these aren't reset, the timestamps make a huge jump when the next RTCP
is received.

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

14 years agoRevert svn rev 21857, readd first_rtcp_ntp_time in RTPDemuxContext
Martin Storsjö [Tue, 20 Apr 2010 07:34:28 +0000 (07:34 +0000)]
Revert svn rev 21857, readd first_rtcp_ntp_time in RTPDemuxContext

In order to sync RTP streams that get their initial RTCP timestamp at
different times, propagate the NTP timestamp of the first RTCP packet
to all other streams.

This makes the timestamps of returned packets start at (near) zero instead
of at any random offset.

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

14 years agoSet AVFMT_NOTIMESTAMPS flag for mp3 muxer
Baptiste Coudurier [Tue, 20 Apr 2010 01:41:00 +0000 (01:41 +0000)]
Set AVFMT_NOTIMESTAMPS flag for mp3 muxer

Fixes issue 1026

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

14 years agovertical align in libx264.c
Jason Garrett-Glaser [Mon, 19 Apr 2010 21:20:20 +0000 (21:20 +0000)]
vertical align in libx264.c

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

14 years agoRevert "Fix libx264 configure check to use pkg-config if available."
Måns Rullgård [Mon, 19 Apr 2010 19:37:31 +0000 (19:37 +0000)]
Revert "Fix libx264 configure check to use pkg-config if available."

There are problems using pkg-config, and a better solution is being
worked on.

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

14 years agoFix libx264 configure check to use pkg-config if available.
Jason Garrett-Glaser [Mon, 19 Apr 2010 19:34:37 +0000 (19:34 +0000)]
Fix libx264 configure check to use pkg-config if available.

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

14 years agoMakefile: make fate target depend on compiling ffmpeg
Vitor Sessak [Mon, 19 Apr 2010 13:05:26 +0000 (13:05 +0000)]
Makefile: make fate target depend on compiling ffmpeg

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

14 years agoconfigure: simplify $COMPONENT_LIST handling
Måns Rullgård [Mon, 19 Apr 2010 12:49:56 +0000 (12:49 +0000)]
configure: simplify $COMPONENT_LIST handling

This lets check_deps set the generic CONFIG_ENCODERS and friends using
an _if_any construct.

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

14 years agoconfigure: simplify vaapi dependencies
Måns Rullgård [Mon, 19 Apr 2010 12:49:53 +0000 (12:49 +0000)]
configure: simplify vaapi dependencies

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

14 years agoconfigure: simplify vdpau dependencies
Måns Rullgård [Mon, 19 Apr 2010 12:49:51 +0000 (12:49 +0000)]
configure: simplify vdpau dependencies

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

14 years agoFATE: update nsv-demux checksums
Måns Rullgård [Mon, 19 Apr 2010 11:51:40 +0000 (11:51 +0000)]
FATE: update nsv-demux checksums

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

14 years agoMake ffserver support rfc3550
Luca Barbato [Mon, 19 Apr 2010 11:42:02 +0000 (11:42 +0000)]
Make ffserver support rfc3550

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

14 years agoMake rtp protocol obey rfc3550
Luca Barbato [Mon, 19 Apr 2010 11:40:45 +0000 (11:40 +0000)]
Make rtp protocol obey rfc3550

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

14 years agoFix leak in avfilter_graph_add_filter().
Stefano Sabatini [Sun, 18 Apr 2010 20:10:43 +0000 (20:10 +0000)]
Fix leak in avfilter_graph_add_filter().

In case of reallocation failure the pointer to the original filter
array was lost. The correct behavior seems to just keep the old array
and count.

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

14 years agoImplement librtmp seek support.
Howard Chu [Sun, 18 Apr 2010 19:09:25 +0000 (19:09 +0000)]
Implement librtmp seek support.

Implement flv_read_seek(), add a missing check on stream_index
and fix timestamp rounding in rtmp_read_seek().

Also add the flv_read_seek2() function, which is not enabled but is
useful as reference.
To actually implement flv_read_seek2() correctly, there would need to
be some corresponding av_url_read_fseek2() function to propagate the
timestamps down to the ByteIOContext and URLContext.

Patch by Howard Chu <hyc <at> highlandsun.com>.

See the thread:
Subject: [FFmpeg-devel] RTMP seek support
Date: 2010-03-28 23:35:02 GMT

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

14 years agoPrefer AVERROR(ENOSYS) over AVERROR_NOTSUPP.
Stefano Sabatini [Sun, 18 Apr 2010 19:09:22 +0000 (19:09 +0000)]
Prefer AVERROR(ENOSYS) over AVERROR_NOTSUPP.

AVERROR_NOTSUPP is (maybe) going to be deprecated.

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

14 years agoMake url_fsize() return AVERROR(ENOSYS) rather than AVERROR(EPIPE) if
Stefano Sabatini [Sun, 18 Apr 2010 17:37:21 +0000 (17:37 +0000)]
Make url_fsize() return AVERROR(ENOSYS) rather than AVERROR(EPIPE) if
the seek operation is not defined in the ByteIOContext.

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

14 years agoMake url_seek() return AVERROR(ENOSYS) rather than AVERROR(EPIPE) in
Stefano Sabatini [Sun, 18 Apr 2010 17:37:16 +0000 (17:37 +0000)]
Make url_seek() return AVERROR(ENOSYS) rather than AVERROR(EPIPE) in
the case where the seek operation is not defined in the protocol
handler.

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

14 years agoAdd const to some pointer parameters.
Michael Kaufmann [Sat, 17 Apr 2010 11:00:53 +0000 (11:00 +0000)]
Add const to some pointer parameters.

Patch by Michael Kaufmann, hallo michael-kaufmann ch

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

14 years agovp3: Use avctx pointer directly
David Conrad [Sat, 17 Apr 2010 10:37:42 +0000 (10:37 +0000)]
vp3: Use avctx pointer directly

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

14 years agovp3: Read fps and aspect ratio in the decoder
David Conrad [Sat, 17 Apr 2010 02:04:39 +0000 (02:04 +0000)]
vp3: Read fps and aspect ratio in the decoder

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

14 years agovp3: Don't crop if there's a left/top offset, it's wrong
David Conrad [Sat, 17 Apr 2010 02:04:35 +0000 (02:04 +0000)]
vp3: Don't crop if there's a left/top offset, it's wrong

Fixes issue1834

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

14 years agovp3: DC-only IDCT
David Conrad [Sat, 17 Apr 2010 02:04:30 +0000 (02:04 +0000)]
vp3: DC-only IDCT

2-4% faster overall decode

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

14 years agoTake ticks per frame into account when warning about difference between
Baptiste Coudurier [Fri, 16 Apr 2010 22:58:56 +0000 (22:58 +0000)]
Take ticks per frame into account when warning about difference between
container and codec frame rate.

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

14 years agoParse strf mov atoms
Martin Storsjö [Fri, 16 Apr 2010 20:36:24 +0000 (20:36 +0000)]
Parse strf mov atoms

This fixes roundup issue 1270.

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

14 years agovp3: More buffer length checks
David Conrad [Fri, 16 Apr 2010 12:21:44 +0000 (12:21 +0000)]
vp3: More buffer length checks

.5% slower to fix some crashes on invalid streams

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

14 years agovp3: Remove internal debug statement
David Conrad [Fri, 16 Apr 2010 12:21:41 +0000 (12:21 +0000)]
vp3: Remove internal debug statement

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

14 years agooggdec: Move warning about missing granule to the correct place
David Conrad [Fri, 16 Apr 2010 12:21:38 +0000 (12:21 +0000)]
oggdec: Move warning about missing granule to the correct place

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

14 years agooggdec: Fix duration calculation if the last page in a file has no granule
David Conrad [Fri, 16 Apr 2010 12:21:35 +0000 (12:21 +0000)]
oggdec: Fix duration calculation if the last page in a file has no granule

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

14 years agooggdec: Remove write-only variable
David Conrad [Fri, 16 Apr 2010 12:21:29 +0000 (12:21 +0000)]
oggdec: Remove write-only variable

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

14 years agoAVERROR(FF_NETERROR(x)) -> FF_NETERROR(x)
Ramiro Polla [Fri, 16 Apr 2010 00:20:11 +0000 (00:20 +0000)]
AVERROR(FF_NETERROR(x)) -> FF_NETERROR(x)
FF_NETERROR is implicitly an AVERROR.

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

14 years agoFix compile error on mingw where ETIMEDOUT is missing (because it's a WSA error).
Ronald S. Bultje [Thu, 15 Apr 2010 18:27:27 +0000 (18:27 +0000)]
Fix compile error on mingw where ETIMEDOUT is missing (because it's a WSA error).
This patch also changes FF_NETERROR() to be an AVERROR(), i.e. it is always
negative, whereas it was previously positive.

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

14 years agoRemove useless assert(), since this can (in theora) be used for any Xiph
Ronald S. Bultje [Thu, 15 Apr 2010 13:30:12 +0000 (13:30 +0000)]
Remove useless assert(), since this can (in theora) be used for any Xiph
codec, so there's no reason to (invalidly) limit it to only Theora.

Also fixes issue 1880 (compilation error on -DDEBUG).

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

14 years agoH.264: cosmetics (vertical align).
Gwenole Beauchesne [Thu, 15 Apr 2010 13:16:37 +0000 (13:16 +0000)]
H.264: cosmetics (vertical align).

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

14 years agoH.264: move avctx->{profile,level} init before AVCodecContext.get_format().
Gwenole Beauchesne [Thu, 15 Apr 2010 08:30:48 +0000 (08:30 +0000)]
H.264: move avctx->{profile,level} init before AVCodecContext.get_format().

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

14 years agoH.264: move avctx->refs init before AVCodecContext.get_format().
Gwenole Beauchesne [Thu, 15 Apr 2010 08:27:06 +0000 (08:27 +0000)]
H.264: move avctx->refs init before AVCodecContext.get_format().

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

14 years agopngdec: Add support for PIX_FMT_Y400A
Andreas Öman [Wed, 14 Apr 2010 20:15:50 +0000 (20:15 +0000)]
pngdec: Add support for PIX_FMT_Y400A

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

14 years agoAdd PIX_FMT_Y400A, 8bit gray, 8bit alpha
Andreas Öman [Wed, 14 Apr 2010 20:15:19 +0000 (20:15 +0000)]
Add PIX_FMT_Y400A, 8bit gray, 8bit alpha

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

14 years agoFix computation of the display aspect ratio.
Robert Krüger [Tue, 13 Apr 2010 23:41:46 +0000 (23:41 +0000)]
Fix computation of the display aspect ratio.

Previously ffprobe was wrongly outputting the sample aspect ratio as
display aspect ratio.

Patch by Robert Krüger $(echo k-r-u-e-g-e-r@s-i-g-n-a-l-7.d-e | sed s/-//g).

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

14 years agoFactorize code in get_bit_rate().
Stefano Sabatini [Tue, 13 Apr 2010 23:24:25 +0000 (23:24 +0000)]
Factorize code in get_bit_rate().

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

14 years agoMake avfilter_graph_add_filter() returns AVERROR(ENOMEM) in case of
Stefano Sabatini [Tue, 13 Apr 2010 23:22:22 +0000 (23:22 +0000)]
Make avfilter_graph_add_filter() returns AVERROR(ENOMEM) in case of
failed reallocation, rather than just -1.

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