diff options
Diffstat (limited to 'src/demuxers/demux_asf.c')
-rw-r--r-- | src/demuxers/demux_asf.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c index e43dc40ea..39796a3a3 100644 --- a/src/demuxers/demux_asf.c +++ b/src/demuxers/demux_asf.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_asf.c,v 1.116 2003/05/24 14:11:24 tmattern Exp $ + * $Id: demux_asf.c,v 1.117 2003/05/26 17:00:12 tchamp Exp $ * * demultiplexer for asf streams * @@ -243,11 +243,11 @@ static int get_guid (demux_asf_t *this) { int i; GUID g; - g.v1 = get_le32(this); - g.v2 = get_le16(this); - g.v3 = get_le16(this); + g.Data1 = get_le32(this); + g.Data2 = get_le16(this); + g.Data3 = get_le16(this); for(i = 0; i < 8; i++) { - g.v4[i] = get_byte(this); + g.Data4[i] = get_byte(this); } for (i = 1; i < GUID_END; i++) { @@ -262,8 +262,8 @@ static int get_guid (demux_asf_t *this) { if (this->stream->xine->verbosity >= XINE_VERBOSITY_DEBUG) printf ("demux_asf: unknown GUID: 0x%x, 0x%x, 0x%x, " "{ 0x%hx, 0x%hx, 0x%hx, 0x%hx, 0x%hx, 0x%hx, 0x%hx, 0x%hx }\n", - g.v1, g.v2, g.v3, - g.v4[0], g.v4[1], g.v4[2], g.v4[3], g.v4[4], g.v4[5], g.v4[6], g.v4[7]); + g.Data1, g.Data2, g.Data3, + g.Data4[0], g.Data4[1], g.Data4[2], g.Data4[3], g.Data4[4], g.Data4[5], g.Data4[6], g.Data4[7]); return GUID_ERROR; } |