| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
the seek position
|
| |
|
|
|
|
|
|
|
|
|
| |
First of all a keyframe seek should be done to the
keyframe right before the requested position and not
to the keyframe that is nearest to the requested position.
Use per track index arrays and use our new binary search function
from core to speed up the search.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
See #580980
|
|
|
|
| |
Fixes bug #581568.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Rewrite the quant table parsing to also handle multiple tables in one JPEG HDQ
segment.
Handle more jpeg types by keeping track of the tables used per component and
putting the used ones in the quant headers.
|
|
|
|
|
|
| |
Also handle input with just one quant table, simply duplicate the quant table.
Handle invalid SOF correctly and some small cleanups.
Fixes #578257
|
|
|
|
| |
Fixes #580746.
|
|
|
|
|
|
|
| |
Read the timestamp of the incomming buffer before we push it in the adapter and
flush it out again as the buffer might be unreffed then and we read from invalid
memory.
Fixes #581444.
|
|
|
|
|
| |
Free the dynamic pads data in finalize.
Fixes #581432
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Don't require width/height on the caps. Use the SOF header to find width/height
and fall back to the caps if there is no SOF. Also use the SOF info to find the
subsampling and quantization tables used. This allows us to set the right type
value in the JPEG rtp header.
Deprecate the quality property, it's unused now and it was used wrongly before.
Always send full quant tables for now until we have some code to detect default
ones.
Fixes #580880
|
|
|
|
|
|
|
|
|
| |
Use the width and the height from the payload headers and set them on the
output caps for added awesomeness.
Fix quant parsing, we need to check the type in the lower 6 bits.
Add first bits of caching quantization tables.
|
|
|
|
|
|
|
| |
Fix various version of find_stream_by_* by not trying to convert an int to a
pointer and vice versa, for portability reasons.
Fixes #581333
|
|
|
|
|
|
| |
Fix a typo in the dummy NAT packet sending code.
Fixes #581329
|
|
|
|
|
|
| |
Server eof (e.g. connection closed) is announced as connection closed,
so better record state and act accordingly to prevent (read/write)
errors during subsequent teardown/cleanup sequences. #Fixes 580851.(c).
|
|
|
|
|
| |
timestamps following flush/seek should be consistent between
UDP and TCP interleaved case. Fixes #580851.(b).
|
|
|
|
|
|
| |
A max range that overflows should not be trusted,
nor should a max range that equals the min range.
Fixes #580851.(a).
|
|
|
|
|
|
| |
We can use the SKIP seek flag to instruct the server to send data faster then
normal but with the same bandwidth.
Fixes #537609
|
|
|
|
| |
Use the new binary search method for finding the right index entry faster.
|
|
|
|
|
|
|
| |
Round up the scaled U and V width and height so that we always draw the correct
amount of pixels to fill the complete image.
Fixes #569611
|
| |
|
|
|
|
|
|
| |
Sprinkle some G_LIKELY around.
Avoid traversing and dumping the tree when debugging is not activated.
|
|
|
|
|
| |
Add support for subtitle pictures.
Fixes #568278.
|
|
|
|
|
|
|
| |
We need to release the state lock before trying to wait for the task to end
because the task might also take the lock.
Fixes #577671
|
|
|
|
|
| |
fix demuxing of m4v streams with ac-3 audio
Fixes #580554
|
|
|
|
|
| |
getaddrinfo errors should be reported with gai_strerror instead of errno as
spotted by MikeS.
|
| |
|
|
|
|
|
|
|
| |
Shuffle the input bits according to RFC 3551 for G726 payloads.
Add option to force the previous behaviour.
Fixes #567140
|
|
|
|
| |
Add a debugging category, add some comments and remove _peek_parent().
|
|
|
|
|
|
| |
We didn't handle unsynchronization at all up to now, which might have
caused frames to not be extracted - esp. frames after an APIC picture
frame. Fixes #577468.
|
|
|
|
|
| |
Frame data size is tag size adjusted for size of the tag header and
footer, not tag size including header and footer.
|
|
|
|
|
| |
Fix some pad leaks.
See #577318.
|
|
|
|
|
|
|
| |
If the codec is actually something else (e.g. mjpeg) change the caps to
match when parsing the ESDS atom.
Also, for AAC, override rate and channels with correct values read from
ESDS, since the rate/channels values elsewhere are often wrong.
|
|
|
|
| |
Use #ifdef instead of #if, to fix the build
|
|
|
|
|
|
| |
* configure.ac: Make an explicit check for struct ip_mreqn.
* gst/udp/gstudpnetutils.c: Use HAVE_IP_MREQN instead of the ad-hoc checks.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
t is being overwritten after, before it's used.
|