diff options
author | Jesper Larsen <jesper.larsen@ixonos.com> | 2013-11-20 12:16:17 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-05-06 14:10:06 +0200 |
commit | f9a4d559ebfc25449e267da54f640510517ff501 (patch) | |
tree | d9c9fe60a48ad2b26a276e66eea250964bf8dd7d /gst/mpegtsmux | |
parent | 29014c726b444392a192f9b470a321cac0863686 (diff) | |
download | gstreamer-plugins-bad-f9a4d559ebfc25449e267da54f640510517ff501.tar.gz |
mpegtsmux: Remove unused data in TsMuxSection
https://bugzilla.gnome.org/show_bug.cgi?id=721685
Diffstat (limited to 'gst/mpegtsmux')
-rw-r--r-- | gst/mpegtsmux/tsmux/tsmux.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gst/mpegtsmux/tsmux/tsmux.h b/gst/mpegtsmux/tsmux/tsmux.h index 93eba33a7..236837896 100644 --- a/gst/mpegtsmux/tsmux/tsmux.h +++ b/gst/mpegtsmux/tsmux/tsmux.h @@ -90,7 +90,6 @@ G_BEGIN_DECLS #define TSMUX_MAX_ES_INFO_LENGTH ((1 << 12) - 1) -#define TSMUX_MAX_SECTION_LENGTH (4096) #define TSMUX_PID_AUTO ((guint16)-1) @@ -107,9 +106,6 @@ typedef void (*TsMuxAllocFunc) (GstBuffer ** buf, void *user_data); struct TsMuxSection { TsMuxPacketInfo pi; GstMpegTsSection *section; - - /* Private sections can be up to 4096 bytes */ - guint8 data[TSMUX_MAX_SECTION_LENGTH]; }; /* Information for the streams associated with one program */ |