Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Revert "qtdemux: Make sure we don't blacklist streams by wrongly comparing ↵ | Tim-Philipp Müller | 2009-07-01 | 1 | -3/+3 | |
| | | | | | | | | | their" This reverts commit 5503a59a5779b67451d8a271000181790ee76bc7. Reverting this since it causes regressions with a lot of sample files I have, all of which worked fine with the last -good release (#586891). | |||||
* | qtdemux: comment out unused structure | Tim-Philipp Müller | 2009-07-01 | 1 | -3/+3 | |
| | ||||||
* | qtdemux: more size checks, and use g_try_new0() instead of g_new0() | Tim-Philipp Müller | 2009-07-01 | 1 | -3/+21 | |
| | | | | | | | Whenever we alloc something based on a user-supplied size, we should really use g_try_new(), otherwise we can easily be made to abort by passing a ridiculously large number to us for allocing. Fixes problems with some fuzzed files. | |||||
* | qtdemux: guard against bogus atom sizes and short reads | Tim-Philipp Müller | 2009-07-01 | 1 | -8/+49 | |
| | | | | | | | | | | Check the possibly 64-bit atom size more carefully before casting it to an int and passing it to gst_pad_pull_range(), otherwise we might end up pulling 0 bytes, getting an empty buffer as requested and dereferencing not available data whilst thinking we actually asked for and got 0x1000000000000 bytes. Similar fix for push mode operation where neededbytes ends up being 0 bytes, which makes us assert. Fixes crash with broken or fuzzed file (NB #122378). | |||||
* | qtdemux: use 0x prefix when logging numbers in hex | Tim-Philipp Müller | 2009-07-01 | 1 | -2/+2 | |
| | ||||||
* | Don't use sendmsg()-dependent code on Windows | LRN | 2009-06-30 | 1 | -0/+6 | |
| | | | | Fixes #585842 | |||||
* | law: fix caps and negotiation | Wim Taymans | 2009-06-30 | 6 | -129/+170 | |
| | | | | | | Fix the caps to include the depth (instead of width twice) in the caps of audio/x-raw-int. Fix negotiation to not only copy the rate/channels of the first structure. | |||||
* | qtdemux: don't process track_num/track_count tags with a 0 value | Tim-Philipp Müller | 2009-06-26 | 1 | -3/+10 | |
| | | | | | Number/count values of 0 mean they're not set. Don't put those in the taglist. | |||||
* | qtdemux: Make sure we don't blacklist streams by wrongly comparing their | Julien Moutte | 2009-06-25 | 1 | -3/+3 | |
| | | | | duration with entire clip duration. | |||||
* | rtpdec: fix some buffer leaks | Krzysztof Błaszkowski | 2009-06-25 | 1 | -0/+3 | |
| | ||||||
* | flvparse: Add missing break in switch/case. | Edward Hervey | 2009-06-25 | 1 | -0/+1 | |
| | ||||||
* | flvdemux: Remove unused variable, hint branch likeliness, add comments. | Edward Hervey | 2009-06-25 | 1 | -8/+8 | |
| | ||||||
* | avidemux: Removed unused variable | Edward Hervey | 2009-06-25 | 1 | -2/+0 | |
| | ||||||
* | qtdemux: Remove dead assignments and unused variables. | Edward Hervey | 2009-06-25 | 1 | -9/+3 | |
| | | | | Also add branch likeliness macros. | |||||
* | qtdemux: Fix uninitialized variables. Fixes build on macosx | Edward Hervey | 2009-06-25 | 1 | -5/+5 | |
| | ||||||
* | avidemux: short-circuit gst_avi_demux_src_convert() when parsing the index | Tim-Philipp Müller | 2009-06-24 | 1 | -37/+51 | |
| | | | | | | | | Don't call gst_avi_demux_src_convert() for each single index entry. Not only do we already have the pointer to the stream context, we also know the formats we want to convert from and to already, so we may just as well use optimised conversion routines that bypass some of the checks and lookups made in gst_avi_demux_src_convert(). | |||||
* | qtdemux: Another round of G_*LIKELY micro-optimisations. | Edward Hervey | 2009-06-24 | 1 | -26/+28 | |
| | ||||||
* | qtdemux: Take last sample duration for dummy segment calculation. | Edward Hervey | 2009-06-24 | 1 | -2/+4 | |
| | | | | | This fixes the cases where files without EDL wouldn't output their last buffer. | |||||
* | avidemux: Sprinkle branch likeliness macros over the code. | Edward Hervey | 2009-06-24 | 1 | -26/+29 | |
| | ||||||
* | qtdemux: Add GST_MEMDUMP statements for unknown atoms. | Edward Hervey | 2009-06-24 | 1 | -2/+13 | |
| | | | | This is to help developers track down and implement unhandled atoms faster. | |||||
* | deinterlace: Remove the interlaced field from the output caps if ↵ | Sebastian Dröge | 2009-06-23 | 1 | -0/+8 | |
| | | | | deinterlacing is enabled | |||||
* | deinterlace: Copy the correct line from correct place in the history | Sebastian Dröge | 2009-06-23 | 1 | -1/+2 | |
| | ||||||
* | rtspsrc: use same protocols after redirect | Wim Taymans | 2009-06-23 | 1 | -0/+11 | |
| | | | | | After a redirect we want to use the same protocols that we were using for the current url. | |||||
* | qtdemux: don't leak cover art | Tim-Philipp Müller | 2009-06-23 | 1 | -0/+1 | |
| | ||||||
* | udp: fix compiler warning about EAI_ADDRFAMILY getting redefined in some cases | Tim-Philipp Müller | 2009-06-23 | 1 | -2/+2 | |
| | | | | | | | Include the header from where we include all the system headers with the socket stuff before we try to define EAI_ADDRFAMILY ourselves, otherwise we define it ourselves and then get a compiler warning if a system header defines it as well without guarding against it being defined already. | |||||
* | matroska: and the new headers too | Wim Taymans | 2009-06-23 | 1 | -2/+2 | |
| | ||||||
* | matroske: fix compiler error | Wim Taymans | 2009-06-23 | 1 | -4/+4 | |
| | | | | | | change gpointer to guint8 * for codec_state and codec_priv as some functions operate on those types and it avoids breaking strict-aliasing rules. | |||||
* | matroskademux: avoid leaking buffers | Wim Taymans | 2009-06-23 | 1 | -2/+11 | |
| | | | | | | | | Don't leak buffers when resyncing to a keyframe. Avoid leaking buffers when exiting the loop on error conditions. Add some more debug info. Fixes #585911 | |||||
* | qtdemux: use GST_MEMDUMP | Tim-Philipp Müller | 2009-06-22 | 2 | -19/+6 | |
| | ||||||
* | apedemux: add container-format tag | Tim-Philipp Müller | 2009-06-22 | 2 | -0/+8 | |
| | | | | Use pbutils here because the string is translated. | |||||
* | id3demux: add container-format tag | Tim-Philipp Müller | 2009-06-22 | 2 | -3/+19 | |
| | | | | Using pbutils here because the string is translated. | |||||
* | multipartdemux: post container-format tag | Tim-Philipp Müller | 2009-06-22 | 1 | -4/+8 | |
| | ||||||
* | matroska-demux: post container-format tags | Tim-Philipp Müller | 2009-06-22 | 1 | -5/+4 | |
| | ||||||
* | avidemux: post container-format tag | Tim-Philipp Müller | 2009-06-22 | 1 | -6/+13 | |
| | ||||||
* | qtdemux: post container-format tags | Tim-Philipp Müller | 2009-06-22 | 1 | -8/+33 | |
| | ||||||
* | audioamplify: Fix integer overflows on 32 bit architectures | Sebastian Dröge | 2009-06-21 | 1 | -9/+9 | |
| | ||||||
* | audioamplify: Don't declare a loop index static | Kipp Cannon | 2009-06-21 | 1 | -45/+47 | |
| | | | | | | | | The previous patch to add support for additional sample formats possibly introduced a reentrancy bug: a variable used for a loop index was declared static. This patch fixes that, and also adds a "/* *INDENT-ON* */" annotation following the macro block. (I don't know what the annotation is for, but the adder, where I copied this from, has it). | |||||
* | audioamplify: Fix off-by-one in wrap-positive mode | Sebastian Dröge | 2009-06-19 | 1 | -2/+2 | |
| | ||||||
* | audioamplify: Add noclip method and support for more formats | Kipp Cannon | 2009-06-19 | 2 | -165/+233 | |
| | | | | Fixes bug #585828 and #585831. | |||||
* | udp: Fix build on FreeBSD | Koop Mast | 2009-06-19 | 1 | -1/+1 | |
| | | | | Fixes bug #586397. | |||||
* | rtpmp4vpay: add support for buffer-list | Ognyan Tonchev | 2009-06-19 | 2 | -8/+62 | |
| | | | | See #585559 | |||||
* | rtpjpegpay: add support for buffer-lists | Ognyan Tonchev | 2009-06-19 | 2 | -7/+60 | |
| | | | | See #585559 | |||||
* | rtph264pay: add support for buffer-lists | Ognyan Tonchev | 2009-06-19 | 2 | -21/+112 | |
| | | | | See #585559 | |||||
* | udputils: don't free invalid memory | Wim Taymans | 2009-06-19 | 1 | -1/+1 | |
| | | | | | As spotted by benjiG in IRC. don't free invalid memory when getaddrinfo failed. | |||||
* | avidemux: streaming; adjust sizes to cater for padding in chunks | Mark Nauwelaerts | 2009-06-18 | 1 | -2/+2 | |
| | ||||||
* | avidemux: streaming mode; handle data chunks grouped in rec lists. | Mark Nauwelaerts | 2009-06-17 | 1 | -0/+19 | |
| | | | | Fixes #567983. | |||||
* | qtdemux: map some tags to COMPOSER rather than ARTIST | Mark Nauwelaerts | 2009-06-17 | 1 | -2/+2 | |
| | ||||||
* | qtdemux: fix some 3GP tag extraction (keywords, genre, location) | Mark Nauwelaerts | 2009-06-17 | 1 | -19/+103 | |
| | ||||||
* | qtdemux: extract pixel-aspect-ratio information | Mark Nauwelaerts | 2009-06-17 | 2 | -2/+58 | |
| | ||||||
* | matroskademux: Fix leaking of the Matroska TITLE element | Sebastian Dröge | 2009-06-17 | 1 | -0/+1 | |
| |