- 21 Feb, 2011 1 commit
-
-
Stefano Sabatini authored
Add drawutils.h and drawutils.c, and use them in the pad filter. The new functions are going to be shared by other filters. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 20 Feb, 2011 11 commits
-
-
Ronald S. Bultje authored
Update libavformat/version.h and doc/APIChanges after renaming init_put_byte() and ByteIOContext to ffio_init_context() (private) and AVIOContext, (public), and deprecating the originals. (cherry picked from commit d2bbf82e)
-
Anton Khirnov authored
init_put_byte should never be used outside of lavf, since sizeof(AVIOContext) isn't part of public ABI. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit e731b8d8)
-
Anton Khirnov authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit ae628ec1)
-
Ronald S. Bultje authored
Advanced profile never uses "range reduction", so vc1_put_block() quite literally just calls put_pixels_clamped() from vc1_decode_i_blocks_adv(). By inlining the function, we can prevent calling IDCT8x8 if CODEC_FLAG_GRAY is set, and we don't have to scale the coeffs in the [0,256] range, but can instead use put_signed_pixels_clamped(). (cherry picked from commit 70aa916e)
-
Mans Rullgard authored
This adds configure and runtime checks for AVX support on x86 CPUs. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 87f1355f)
-
Marton Balint authored
Allows playback of nonprimary audio streams in multiple bitrate sources, such as mmsh://wmscr1.dr.dk/e02ch03mSigned-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 74d6871d)
-
Ronald S. Bultje authored
Remove ff_vector128, it is identical to ff_pb_80. (cherry picked from commit bf6fa732)
-
Reimar Döffinger authored
Patch discussed and taken from https://roundup.ffmpeg.org/issue2584 (cherry picked from commit 2bbec1ed)
-
David Conrad authored
With negative stride, the start of the edge_emu buffer should be pointing to the last line, not the end of the buffer. With positive stride, pointing to the end of the buffer was completely wrong. (cherry picked from commit a89f4ca0)
-
Young Han Lee authored
(cherry picked from commit 9707f84f)
-
Jason Garrett-Glaser authored
Also remove qscale_table code; this didn't make sense anyways as VP3 doesn't use an MPEG-like quantizer scale. (cherry picked from commit 902685b8)
-
- 19 Feb, 2011 1 commit
-
-
Michael Niedermayer authored
regression introduced in 1762d9ceSigned-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 18 Feb, 2011 25 commits
-
-
Jean-Daniel Dupas authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 351423ae)
-
Ronald S. Bultje authored
(cherry picked from commit ed040f35)
-
Jason Garrett-Glaser authored
This one didn't actually need to be initialized. (cherry picked from commit 891b1f15)
-
Jason Garrett-Glaser authored
On some versions of gcc, these weren't always getting inlined due to hitting the inline cap limit in some files. This is generally bad, as most of these functions are smaller inlined than not. (cherry picked from commit eb3755a5)
-
Jason Garrett-Glaser authored
(cherry picked from commit bcf4568f)
-
Jason Garrett-Glaser authored
(cherry picked from commit 7634771e)
-
Ronald S. Bultje authored
(cherry picked from commit 12802ec0)
-
Ronald S. Bultje authored
(cherry picked from commit 0b16cdc3)
-
Ronald S. Bultje authored
(cherry picked from commit 1da6ea39)
-
Martin Storsjö authored
If the client sends PLAY/PAUSE requests with the same url as specified in Content-Base, these requests may have urls with trailing slashes. (cherry picked from commit c2ca851b)
-
Janne Grunau authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit c3dbfa1a)
-
Anton Khirnov authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 09d171b9)
-
Anton Khirnov authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit ab0287fc)
-
Young Han Lee authored
3*n4 was already calculated in n3. (cherry picked from commit 979395bb)
-
Justin Ruggles authored
The rematrixing strategy reuse flags are not reset between frames, so they need to be initialized for all blocks, not just block 0. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 5b54d4b3)
-
Anton Khirnov authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 9fcae973)
-
Stefano Sabatini authored
The new av_parse_time() is created in libavutil/parseutils.h, all the internal functions used by parse_date are moved to libavutil/parseutils.c and made static. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit f6c7375a)
-
Anton Khirnov authored
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 610219a5)
-
Martin Storsjö authored
If udp_read_packet returns 0, rtsp_st isn't set and we shouldn't treat it as a successfully received packet (which is counted and possibly triggers a RTCP receiver report). This fixes issue 2612. (cherry picked from commit 2c35a6bd)
-
Nicolas George authored
Hi. It seems that ffserver sets sample_aspect_ratio to an invalid value and lavf rejects it. I am not sure what I am doing here, but the attached patch actually solves something: using the following config: CustomLog - NoDaemon RTSPPort 5454 <Stream test1-rtsp.mpg> Format rtp File "/tmp/test1-rtsp.mpg" </Stream> it allows a somewhat old ffplay (unaffected by the content-base issue I spoke of in another thread) to play the stream. Without it, ffserver logs this and closes the stream: Wed Feb 16 14:52:14 2011 [rtp @ 0x1399de0]Aspect ratio mismatch between encoder and muxer layer Regards, -- Nicolas George From 1b89c3c2164335060e87567b27deb0d354e0a814 Mon Sep 17 00:00:00 2001 From: Nicolas George <nicolas.george@normalesup.org> Date: Wed, 16 Feb 2011 14:44:31 +0100 Subject: [PATCH] ffserver: set the sample aspect ratio. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> (cherry picked from commit 6741f7c9)
-
James Zern authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 0fa904c9)
-
Stefano Sabatini authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 009026ef)
-
Anssi Hannula authored
There are no timestamps in IEC 61937. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 6c60fcf8)
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes issue2272. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 16 Feb, 2011 2 commits
-
-
Justin Ruggles authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 1f004fc5)
-
Maksym Veremeyenko authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 41cdc1ff)
-