- 11 Feb, 2011 26 commits
-
-
Mans Rullgard authored
This avoids double semicolons after macro expansion. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 44adbebe)
-
Ronen Mizrahi authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit df211c3a)
-
Janne Grunau authored
(cherry picked from commit 5c19f64c)
-
Janne Grunau authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 493aa30a)
-
Reimar Döffinger authored
Instead of returning an error when bytes are left over, just return the number of actually used bytes as other decoders do. Instead add a special case so an error will be returned when none of the data looks valid to avoid making debugging a pain. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 4a72765a)
-
Justin Ruggles authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit dda3f0ef)
-
Mans Rullgard authored
The function return type is void, so a return statement with an expression is forbidden (and pointless). Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit b4668274)
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit dbb09ec2)
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 628b16f4)
-
Anton Khirnov authored
Its contents aren't used for anything. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit d7a5106e)
-
Anton Khirnov authored
This will be useful for splitting asf_read_header() Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 7c725380)
-
Anton Khirnov authored
This will be useful for splitting asf_read_header() Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit d42b0972)
-
David Fries authored
Keep the original corner case behaviour, where reuse is enabled for the case where no argument is given to the reuse url option. Signed-off-by: Martin Storsjö <martin@martin.st> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 00952be4)
-
Anton Khirnov authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 569ff021)
-
Mans Rullgard authored
The avcodec_thread_free() compatibility wrapper calls ff_thread_free(), which is not defined when threading is disabled. Make this call conditional. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 9a77a92c)
-
Mans Rullgard authored
This should fix building with win32 threads. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit aef669cd)
-
Anton Khirnov authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 4bc328a2)
-
Reimar Döffinger authored
check AVCodecContext->sample_fmt against AVCodec->sample_fmts[] to ensure that the encoder supports the specified sample format. Error out if it doesn't. Previously, it would continue and output garbage. Fixes issue 2587. (cherry picked from commit 2cfa2d92)
-
Vladimir Pantelic authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit f4c79d1e)
-
Alexander Strange authored
Decode times for big_buck_bunny_720p_stereo: 1 thread: real 1m14.227s user 1m13.104s sys 0m1.108s 2 threads: (33% faster) real 0m49.329s user 1m33.735s sys 0m1.834s 3 threads: (44% faster) real 0m41.593s user 1m44.884s sys 0m1.967s (cherry picked from commit d23845f3)
-
Ronald S. Bultje authored
(cherry picked from commit f2146944)
-
Alexander Strange authored
As a side effect of the last commit, avcodec_open() now calls it automatically, so there is no longer any need for clients to call it. Instead they should set AVCodecContext.thread_count. avcodec_thread_free() is deprecated, and will be removed from avcodec.h at the next MAJOR libavcodec bump. Rename the functions to ff_thread_init/free, since they are now internal. Wrappers are provided to maintain API compatibility. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit c0b102ca)
-
Ronald S. Bultje authored
(cherry picked from commit 8e8cc52b)
-
Alexander Strange authored
See doc/multithreading.txt for details on use in codecs. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
Ronald S. Bultje authored
(cherry picked from commit c2bd7578)
-
Anton Khirnov authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit e4e234fa)
-
- 09 Feb, 2011 14 commits
-
-
Jason Garrett-Glaser authored
Also allow qmin/qmax to go up to 69 (the current max value for libx264). This will have to increase when we add 9/10-bit support. (cherry picked from commit c7ac200d)
-
Jason Garrett-Glaser authored
Due to being pants-on-head retarded, libavcodec defaults this to zero, which results in broken output. This didn't affect ffmpeg.c, which sets it itself, but caused problems for other calling apps using VBV. (cherry picked from commit f7f8120f)
-
Jason Garrett-Glaser authored
Currently uses AV_RL32 instead of AV_RL32A, as the latter doesn't exist yet. (cherry picked from commit 62457f90)
-
Ronald S. Bultje authored
Fix emu_edge_v_extend_15 to be <128 bytes on Win64, by being more strict on the size of registers and which registers are being used for operations where multiple are available. This fixes segfaults in emulated_edge() function calls on Win64. (cherry picked from commit 17cf7c68)
-
Anssi Hannula authored
It is useful for applications that hand input data directly to lavf via a ByteIOContext. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 3940caad)
-
Anssi Hannula authored
There is no need to pass the ByteIOContext via a pointer to a pointer anymore. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit aad216fd)
-
Anssi Hannula authored
It never reopens the bytestream anymore. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 4d016dd4)
-
Reimar Döffinger authored
Currently (since the data_offset fix) the ogg demuxer assumes that after the first non-header packets in any stream no more header packets will follow. This is not guaranteed, so change the code back again to wait until it has finished the headers for all streams before returning from ogg_get_headers. This fixes issue 2428. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 6bd69e6a)
-
François Revol authored
Haiku does not have a separate libm, so do not try to link to it. Signed-off-by: François Revol <revol@free.fr> Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit f59c4bd6)
-
Reinhard Tartler authored
This cleanup patch updates the developer documentation with respect to the migration to the git scm. (cherry picked from commit 87800dc2)
-
Stefan Kost authored
In all 3 cases, the decoding continues and thus a warning would be sufficient. Helps application that catch them with own log handers to handle them accordingly. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit ae210479)
-
Janne Grunau authored
(cherry picked from commit 7ab8758b)
-
Janne Grunau authored
It was removed in fe9a3fbe since it had the wrong value. Add profile name for it. (cherry picked from commit 440b6169)
-
Stefano Sabatini authored
See thread: Subject: [PATCH] movie video source Date: 2010-12-31 15:35:30 GMT Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
-