Sebastian Dröge
cc119e6eb9
qtdemux: Replace tabs with spaces
2015-11-18 19:11:51 +02:00
Sebastian Dröge
b404b2239a
qtdemux: Cast to signed integers to prevent unsigned compare between negative and positive numbers
...
This fixes seeking if the first entries in the samples table are negative. The
binary search would always fail on this as the array would not be sorted if
interpreting the negative numbers as huge positive numbers. This caused us to
always output buffers from the beginning after a seek instead of close to the
seek position.
Also add a case to the comparison function for equality.
2015-11-18 19:11:51 +02:00
Luis de Bethencourt
40aa27b788
matroskamux: remove duplicate check
...
We want 1 or 2 streamheaders, the check if (bufarr->len != 1 &&
bufarr->len != 2) is enough. Not need to check if bufarr->len is <= 0 or
> 255.
2015-11-18 16:06:27 +00:00
Vineeth TM
bd701b8ee5
souphttpclientsink: Fix error leak and handle error
...
g_thread_try_new allows for possiblity of failures. In case it fails,
error is not handled and leaked.
https://bugzilla.gnome.org/show_bug.cgi?id=758260
2015-11-18 09:31:42 +02:00
Josep Torra
84b6743cf8
rtpgstdepay: Properly handle backward compat for event deserialization
...
Actual code is checking for a NULL terminator and a ';' terminator,
for backward compat, in a chained way that cause all events being rejected.
The proper condition is to reject the events when terminator isn't
in ['\0', ';'] set.
https://bugzilla.gnome.org/show_bug.cgi?id=758151
2015-11-17 17:24:28 -08:00
Josep Torra
f8b9360dad
tests: rtp-payloading: Test for handling of custom events in rtpgst
...
Add a simple test that checks proper serialization/deserialization
of custom events with rtpgstpay and rtpgstdepay.
2015-11-17 17:24:28 -08:00
Nicolas Dufresne
b848c1b6ff
vpxdec: Use threads on multi-core systems
...
This adds an automatic mode to the threads property of vpxdec in order to
use as many threads as there is CPU on the platform. This brings back
GStreamer VPX decoding performance closer to what is achieved by other
players, including Chromium.
https://bugzilla.gnome.org/show_bug.cgi?id=758195
2015-11-17 12:27:31 -05:00
Thiago Santos
8bcc733cec
qtdemux: only send initial gaps for non-fragmented streams
...
It would be unusual to have the header segment with an 'edts' atom
indicating gaps at the beginning when handling fragmented streams.
The header usually doesn't contain any timestamping information, this
should come from the playlist/manifest and the segments with media
in those scenarios.
https://bugzilla.gnome.org/show_bug.cgi?id=758171
2015-11-17 09:42:07 -03:00
Thiago Santos
ef8cb05823
Revert "Revert "qtdemux: respect qt segments in push-mode for empty starts""
...
This reverts commit d842ff288a
.
This was reverted by accident
2015-11-17 09:41:34 -03:00
Sebastian Dröge
ffd3b391c8
udpsrc: Add "loop" property for enabling/disabling multicast loopback
...
On POSIX, IP_MULTICAST_LOOP is a setting for the sender socket. On Windows it
is a setting for the receiver socket. As such we will need it on udpsrc too to
allow filtering out our own multicast packets.
2015-11-17 12:39:05 +02:00
Sebastian Dröge
d842ff288a
Revert "qtdemux: respect qt segments in push-mode for empty starts"
...
This reverts commit 142d8e2d23
.
2015-11-16 13:52:05 +02:00
Vineeth TM
0d4e3847f0
qtdemux: Fix string memory leak
...
The string got using g_strdup_printf will be allocated memory
and should be freed after use.
https://bugzilla.gnome.org/show_bug.cgi?id=758161
2015-11-16 10:22:16 +02:00
Reynaldo H. Verdejo Pinochet
8ef6ecc244
v4l2/object: remove unnecessary NULL check before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
492e917a6d
osssrc: remove unnecessary NULL check before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
e882989201
sunaudiosrc: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
678e45a8f7
wavparse: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
fd4d33b0fa
matroskamux: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
edec775e26
matroska/read-common: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
48c4362cdc
isomp4/atoms: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
5367b26653
rtp/theorapay: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
5d23dfdabf
rtp/vorbispay: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
3c8b7e079c
rtp/jpegpay: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
a34cee5aad
rtpgstpay: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
a4c8ec8bd7
rtspsrc: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
3374c00d43
flxdec: remove unnecessary NULL check before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
557ae0fabd
effectv/optv: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
7defb23371
effectv/shagadelictv: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
24e689c57e
effectv/ripple: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
1c30fa8350
effectv/radioac: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
29a592f7fa
effectv/streak: remove unnecessary NULL check before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
f58841c24e
shout2: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
2b7a1b4bb9
vp9enc: remove unnecessary NULL check before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
97a94b02ae
vp8enc: remove unnecessary NULL check before g_free()
2015-11-15 01:43:08 -08:00
Reynaldo H. Verdejo Pinochet
c9039751f1
souphttpsrc: remove unnecessary NULL checks before g_free()
2015-11-15 01:43:08 -08:00
Aurélien Zanelli
aaab7b6ab1
v4l2object: add support of NV16, NV61 and NV24 formats
...
Mapped respectively to V4L2_PIX_FMT_NV16/V4L2_PIX_FMT_NV16M,
V4L2_PIX_FMT_NV61,V4L2_PIX_FMT_NV61M and V4L2_PIX_FMT_NV24 v4l2 formats.
https://bugzilla.gnome.org/show_bug.cgi?id=758058
2015-11-13 10:29:01 -05:00
Vineeth TM
b0114bacdb
splitmuxpartreader: Fix GCond leak
...
inactive_cond is not being cleared resulting in memory leak.
https://bugzilla.gnome.org/show_bug.cgi?id=757924
2015-11-11 15:38:05 +01:00
Vineeth TM
7ef9dd3761
jpegdec: fix output state memory leak
...
When jpeg_finish_decompress is called, output state reference is being created.
But if there is any failures in finishing decompress, it jumps to setjmp,
and at that point state was not referenced. Resulting in leak of output state.
Hence adding another setjmp after output state is referenced.
Similarly adding another setjmp to unmap the frame in case error happens before
finish_decompress
https://bugzilla.gnome.org/show_bug.cgi?id=753087
2015-11-10 07:54:08 -03:00
Thiago Santos
142d8e2d23
qtdemux: respect qt segments in push-mode for empty starts
...
In push-mode it is hard to support qt segments overall but it is
possible to support when the file isn't heavily edited but just contain
a segment to indicate a gap at the beginning. This also allows properly
timestamping data that has negative DTS in push-mode.
It is relevant to support those for 2 scenarios:
1) fragmented streaming
2) HTTP playback of 'regular' mp4
https://bugzilla.gnome.org/show_bug.cgi?id=753484
2015-11-09 11:49:27 -03:00
Nirbheek Chauhan
e686ec0c97
pulse: Don't leak caps and structures in the device provider
2015-11-05 17:54:48 +00:00
Arun Raghavan
7e22ea5d5a
rtpmanager: Document properties that are expressed in bits per second
...
This changed in 928cd110bc
and
73c0c2920f
but was not documented.
https://bugzilla.gnome.org/show_bug.cgi?id=747863
2015-11-05 09:48:59 +05:30
Arun Raghavan
e9692e4207
rtpmanager: Trivial gst-indent fixes
2015-11-05 09:48:59 +05:30
Philippe Normand
9f0c22e891
qtdemux: support for cenc auxiliary info parsing outside of moof box
...
When the cenc aux info index is out of moof boundaries, keep track of
it and parse the beginning of the mdat box, before the first sample.
https://bugzilla.gnome.org/show_bug.cgi?id=755614
2015-11-04 15:29:10 +00:00
Sebastian Dröge
ed20b9ab90
matroskademux: Use codecutils helpers for creating Opus caps
...
Also fix up codec data with values from the container.
https://bugzilla.gnome.org/show_bug.cgi?id=757152
2015-11-03 20:35:27 +02:00
Sebastian Dröge
2d98348abb
matroskademux: There is no multistream field for Opus anymore
...
https://bugzilla.gnome.org/show_bug.cgi?id=757152
2015-11-03 20:35:27 +02:00
Sebastian Dröge
c6f6092f2f
matroska/webmmux: Support Opus in webmmux and VP9 in matroskamux
...
https://bugzilla.gnome.org/show_bug.cgi?id=729950
2015-11-03 20:35:27 +02:00
Sebastian Dröge
d620ca4740
matroskademux: Parse and handle CodecDelay, SeekPreroll and DiscardPadding
...
https://bugzilla.gnome.org/show_bug.cgi?id=727305
2015-11-03 20:35:27 +02:00
Sebastian Dröge
52122f9206
matroskamux: Write CodecDelay, DiscardPadding and SeekPreroll for Opus
...
And also adjust timestamps and durations according to the codec delay, both
should include it for whatever reason.
https://bugzilla.gnome.org/show_bug.cgi?id=727305
2015-11-03 20:35:27 +02:00
Sebastian Dröge
b34574d829
matroskamux: Opus headers are not in-band
...
https://bugzilla.gnome.org/show_bug.cgi?id=727305
2015-11-03 20:35:27 +02:00
Arun Raghavan
7b17615da8
v4l2: Set O_CLOEXEC on the device fd
...
This is needed to make sure that child processes don't inherit the video
device fd which can cause problems with some drivers.
2015-11-03 22:02:38 +05:30
Luis de Bethencourt
9fee2c7c9f
rtpmanager: switch G_GINT64_FORMAT for GST_STIME_ARGS
...
No need to use G_GINT64_FORMAT for potentially negative values of
GstClockTimeDiff. Since 1.6 these can be handled with GST_STIME_ARGS.
Plus it creates more readable values in the logs.
https://bugzilla.gnome.org/show_bug.cgi?id=757480
2015-11-03 14:47:00 +00:00