Age | Commit message (Collapse) | Author | Files | Lines |
|
Typo in the previous commit
|
|
If there is an ISO 639 language descriptor for a stream, send a language
code tag so that players can show a meaningful language for the audio and
subtitle streams.
|
|
Don't treat some streams (Private Stream 2) as LPCM when they're not. Fixes
playback of files that have private streams in them now that the PES filter
emits such packets.
|
|
First stab at sending new-segment events to effect sparse stream
updates.
|
|
Output subpicture streams when they are found on the private stream ID.
Don't strip off the first byte of such packets when pushing.
|
|
Add output subpicture pads for DVD (video/x-dvd-subpicture) and Bluray PGS
(subpicture/x-pgs) streams. Remove an unused variable from
the PES filter.
|
|
|
|
|
|
The one thing we *DO* need to do for those streams is to skip all
the PTS/DTS/Scrambling/DSM/extension/... handling.
|
|
This avoids:
* creating a MpegTSStream structure for nothing
* processing packet data for nothing
|
|
|
|
Use correct constants for PID_type so that we clear the right filter.
provide_clock must return a ref to a clock.
|
|
If the estimated bitrate is lower than 188 bytes, there's most likely
something completely wrong with the two samples. If that happens,
force recalculation.
Use guint64 for observation PCR, I saw cases where it would overflow.
|
|
|
|
This allows debugging with mpegtsdemux:4 while being able to track what's
going on (and avoid taking up as much cpu for debugging as for the actual
demuxing process).
|
|
One shouldn't run gst-indent on .h files, in this case it was un-beautifying
the indentation :)
|
|
Sync from gst-fluendo-mpegdemux and have seeking/duration query
improvements in. No support however for wrapped around pcrs etc. but a
start nonetheless.
Also fix indentation issues.
|
|
Fixes #569781
|
|
Fixes #569673.
|
|
Fixes #569437.
|
|
This should remove the bogus error messages while still keeping the original
intent of this, which is to inform the pipeline/application/user that we
could not find any valid streams.
There are many reasons why pushing an event can fail, and not all of them are
because there's no link downstream (it could be because it was blocked, or
flushing).
|
|
itvhd masks its h264 video stream as a private stream making it harder for
other set top boxes to decode. this checks for specific program number, video
pid and stream type combination before declaring it as h264.
|
|
add 'has-ac3' boolean to pmt bus message
|
|
|
|
|
|
|
|
|
|
Added a workarround to permit play certain malformed clips where first
SCR is greater than last SCR. Fixes bug #454228
|
|
|
|
|
|
Fix memleak in mpegts_packetizer_clear where MpegTSPacketizerStream is
not freed properly when using foreach_stream_clear function.
|
|
Make the sync LUT table adjusted dynamically according to the size
of scanned data. Fixes demuxing buffers of any size.
|
|
Fixes bug #573288.
|
|
don't ignore the return value of pull_range because we only get a valid non-NULL
buffer when the return value is GST_FLOW_OK. Avoids a crash when the pipeline is
shutting down.
|
|
Change all definitions from fluts to mpegts.
|
|
flushing adapters correctly.
|
|
Ensure that the clossing segment is generated correctly and being
properly pushed.
Added some GST_DEBUG to check it.
Ensure that last_stop is updated in stream time.
Calculate duration as delta of PTS as it seems more correct than delta
of SCR in some clips that I tested.
|
|
Removed a line wrongly copy pasted in my previous commit.
Avoid an unsigned integer overflow.
Seek last_stop in stream time.
Clamp last_stop in stream time between first and last SCR.
Fixed a typo in the GST_DEBUG line and added some more info.
|
|
|
|
|
|
Some random cleanups.
|
|
pes packets that claim to be encrypted may not be so, so treat as normal.
Just log the flags.
|
|
This reverts commit d3e4e5598f6c3db444d0014597d383ed35a02998.
|
|
pes packets that claim to be encrypted may not be so, so treat as normal.
Just log the flags.
|
|
since the returned value doesn't mean anyth...
Original commit message from CVS:
* gst/mpegdemux/gstmpegtsdemux.c:
Don't forward duration requests in BYTES, since the returned
value doesn't mean anything. Fixes #566959
|
|
shows binary 11 (3 not 4).
Original commit message from CVS:
* gst/mpegdemux/mpegtspacketizer.c:
Guard interval is 4 if descriptor part shows binary 11 (3 not 4).
|
|
Original commit message from CVS:
* gst/mpegdemux/gstmpegdesc.h:
Fix up satellite delivery subsystem defs.
|
|
Original commit message from CVS:
* gst/mpegdemux/gstmpegdesc.h:
Fix up terrestrial delivery system descriptor defs.
They should be shifted otherwise wrong values are seen.
|
|
to fix compiler warnings.
Original commit message from CVS:
* gst/mpegdemux/gstmpegdemux.c:
Initialize scr_rate_n and scr_rate_d in order to fix compiler warnings.
|
|
Original commit message from CVS:
* gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_src_query),
(gst_flups_demux_parse_pack_start):
Use the adjusted SCR for calculating the mux rate.
Don't update the rate estimation after a discont.
|