Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
5e8fb7c2
Commit
5e8fb7c2
authored
Nov 25, 2013
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: asf: add fake root guid for debugging
parent
b82bc834
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
modules/demux/asf/libasf.c
modules/demux/asf/libasf.c
+2
-1
modules/demux/asf/libasf_guid.h
modules/demux/asf/libasf_guid.h
+8
-0
No files found.
modules/demux/asf/libasf.c
View file @
5e8fb7c2
...
@@ -1517,6 +1517,7 @@ static const struct
...
@@ -1517,6 +1517,7 @@ static const struct
const
char
*
psz_name
;
const
char
*
psz_name
;
}
ASF_ObjectDumpDebugInfo
[]
=
}
ASF_ObjectDumpDebugInfo
[]
=
{
{
{
&
vlc_object_root_guid
,
"Root"
},
{
&
asf_object_header_guid
,
"Header"
},
{
&
asf_object_header_guid
,
"Header"
},
{
&
asf_object_data_guid
,
"Data"
},
{
&
asf_object_data_guid
,
"Data"
},
{
&
asf_object_index_guid
,
"Index"
},
{
&
asf_object_index_guid
,
"Index"
},
...
@@ -1607,7 +1608,7 @@ asf_object_root_t *ASF_ReadObjectRoot( stream_t *s, int b_seekable )
...
@@ -1607,7 +1608,7 @@ asf_object_root_t *ASF_ReadObjectRoot( stream_t *s, int b_seekable )
return
NULL
;
return
NULL
;
p_root
->
i_type
=
ASF_OBJECT_ROOT
;
p_root
->
i_type
=
ASF_OBJECT_ROOT
;
memcpy
(
&
p_root
->
i_object_id
,
&
asf_object_null
_guid
,
sizeof
(
guid_t
)
);
memcpy
(
&
p_root
->
i_object_id
,
&
vlc_object_root
_guid
,
sizeof
(
guid_t
)
);
p_root
->
i_object_pos
=
stream_Tell
(
s
);
p_root
->
i_object_pos
=
stream_Tell
(
s
);
p_root
->
i_object_size
=
0
;
p_root
->
i_object_size
=
0
;
p_root
->
p_first
=
NULL
;
p_root
->
p_first
=
NULL
;
...
...
modules/demux/asf/libasf_guid.h
View file @
5e8fb7c2
...
@@ -62,6 +62,14 @@ static const guid_t asf_object_null_guid =
...
@@ -62,6 +62,14 @@ static const guid_t asf_object_null_guid =
{
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
}
{
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
}
};
};
static
const
guid_t
vlc_object_root_guid
=
{
0x00000000
,
0x0000
,
0x0000
,
{
0x56
,
0x4C
,
0x43
,
0x52
,
0x4F
,
0x4F
,
0x54
,
0x00
}
};
/* Top-Level object */
/* Top-Level object */
static
const
guid_t
asf_object_header_guid
=
static
const
guid_t
asf_object_header_guid
=
{
0x75B22630
,
0x668E
,
0x11CF
,
{
0xA6
,
0xD9
,
0x00
,
0xAA
,
0x00
,
0x62
,
0xCE
,
0x6C
}};
{
0x75B22630
,
0x668E
,
0x11CF
,
{
0xA6
,
0xD9
,
0x00
,
0xAA
,
0x00
,
0x62
,
0xCE
,
0x6C
}};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment