From 5e6696db9dd0f6d9d3ccd5756d28c9de1037feb5 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Fri, 27 Jun 2008 15:25:00 +0000 Subject: gst/avi/gstavimux.*: Add 8 bytes to current streamheader to make for a complete one and to make more players happy. ... Original commit message from CVS: * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header): * gst/avi/gstavimux.h: Add 8 bytes to current streamheader to make for a complete one and to make more players happy. Fixes #519460. --- gst/avi/gstavimux.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'gst/avi/gstavimux.h') diff --git a/gst/avi/gstavimux.h b/gst/avi/gstavimux.h index 7cde4a37..0100e031 100644 --- a/gst/avi/gstavimux.h +++ b/gst/avi/gstavimux.h @@ -52,6 +52,15 @@ typedef struct _gst_avi_superindex_entry { guint32 duration; } gst_avi_superindex_entry; +typedef struct _gst_riff_strh_full { + gst_riff_strh parent; + /* rcFrame, RECT structure (struct of 4 shorts) */ + gint16 left; + gint16 top; + gint16 right; + gint16 bottom; +} gst_riff_strh_full; + typedef struct _GstAviPad { /* do not extend, link to it */ /* is NULL if original sink request pad has been removed */ -- cgit