diff options
author | vanista <vanista@gmail.com> | 2009-01-05 11:28:49 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2009-01-05 11:28:49 +0000 |
commit | 751555b5c3839b19274565ef65c6189c494a6924 (patch) | |
tree | 05653635b4e46e7eef4c9b89658df007a57c7c54 /gst/mpegtsmux/tsmux/tsmuxstream.h | |
parent | caa83490672d4acfd8569d876b4f134c5f72afaa (diff) | |
download | gst-plugins-bad-751555b5c3839b19274565ef65c6189c494a6924.tar.gz gst-plugins-bad-751555b5c3839b19274565ef65c6189c494a6924.tar.bz2 gst-plugins-bad-751555b5c3839b19274565ef65c6189c494a6924.zip |
gst/mpegtsmux/: Improve muxing of AC3/h264 streams a bit. Fixes bug #550613.
Original commit message from CVS:
Patch by: vanista <vanista at gmail dot com>
* gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_create_stream):
* gst/mpegtsmux/tsmux/tsmux.c: (tsmux_write_pmt):
* gst/mpegtsmux/tsmux/tsmuxstream.c: (tsmux_stream_new),
(tsmux_stream_write_pes_header), (tsmux_stream_get_es_descrs):
* gst/mpegtsmux/tsmux/tsmuxstream.h:
Improve muxing of AC3/h264 streams a bit. Fixes bug #550613.
Diffstat (limited to 'gst/mpegtsmux/tsmux/tsmuxstream.h')
-rw-r--r-- | gst/mpegtsmux/tsmux/tsmuxstream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/mpegtsmux/tsmux/tsmuxstream.h b/gst/mpegtsmux/tsmux/tsmuxstream.h index bf1e23b9..4ee6ae18 100644 --- a/gst/mpegtsmux/tsmux/tsmuxstream.h +++ b/gst/mpegtsmux/tsmux/tsmuxstream.h @@ -183,6 +183,10 @@ struct TsMuxStream { gint pcr_ref; gint64 last_pcr; + + gint audio_sampling; + gint audio_channels; + gint audio_bitrate; }; /* stream management */ |