Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
14aec216
Commit
14aec216
authored
Oct 21, 2002
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac.in Makefile.am: enable asf demuxer plugin
* modules/demux/asf/*: some clean up
parent
df45b8c5
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
78 additions
and
56 deletions
+78
-56
configure.ac.in
configure.ac.in
+10
-0
modules/Makefile.am
modules/Makefile.am
+1
-0
modules/demux/asf/asf.c
modules/demux/asf/asf.c
+59
-50
modules/demux/asf/libasf.c
modules/demux/asf/libasf.c
+3
-3
modules/demux/asf/libasf.h
modules/demux/asf/libasf.h
+5
-3
No files found.
configure.ac.in
View file @
14aec216
...
...
@@ -1042,6 +1042,16 @@ then
PLUGINS="${PLUGINS} avi"
fi
dnl
dnl ASF demux plugin
dnl
AC_ARG_ENABLE(asf,
[ --enable-asf ASF demux module (default enabled)])
if test "x${enable_asf}" != "xno"
then
PLUGINS="${PLUGINS} asf"
fi
dnl
dnl AAC demux plugin
dnl
...
...
modules/Makefile.am
View file @
14aec216
...
...
@@ -32,6 +32,7 @@ EXTRA_DIST = \
demux/Modules.am
\
demux/aac/Modules.am
\
demux/avi/Modules.am
\
demux/asf/Modules.am
\
demux/mp4/Modules.am
\
demux/mpeg/Modules.am
\
demux/util/Modules.am
\
...
...
modules/demux/asf/asf.c
View file @
14aec216
This diff is collapsed.
Click to expand it.
modules/demux/asf/libasf.c
View file @
14aec216
...
...
@@ -2,7 +2,7 @@
* libasf.c :
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: libasf.c,v 1.
1 2002/10/20 17:22:33
fenrir Exp $
* $Id: libasf.c,v 1.
2 2002/10/21 09:18:37
fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -892,7 +892,7 @@ void ASF_FreeObjectRoot( input_thread_t *p_input,
}
int
ASF_CountObject
(
asf_object_t
*
p_obj
,
const
guid_t
*
p_guid
)
int
__
ASF_CountObject
(
asf_object_t
*
p_obj
,
const
guid_t
*
p_guid
)
{
int
i_count
;
asf_object_t
*
p_child
;
...
...
@@ -915,7 +915,7 @@ int ASF_CountObject( asf_object_t *p_obj, const guid_t *p_guid )
return
(
i_count
);
}
asf_object_t
*
ASF_FindObject
(
asf_object_t
*
p_obj
,
const
guid_t
*
p_guid
,
int
i_number
)
void
*
__
ASF_FindObject
(
asf_object_t
*
p_obj
,
const
guid_t
*
p_guid
,
int
i_number
)
{
asf_object_t
*
p_child
;
...
...
modules/demux/asf/libasf.h
View file @
14aec216
...
...
@@ -2,7 +2,7 @@
* libasf.h :
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: libasf.h,v 1.
1 2002/10/20 17:22:33
fenrir Exp $
* $Id: libasf.h,v 1.
2 2002/10/21 09:18:37
fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -440,8 +440,10 @@ int ASF_ReadObjectRoot( input_thread_t *p_input,
int
b_seekable
);
void
ASF_FreeObjectRoot
(
input_thread_t
*
p_input
,
asf_object_root_t
*
p_root
);
#define ASF_CountObject( a, b ) __ASF_CountObject( (asf_object_t*)(a), b )
int
__ASF_CountObject
(
asf_object_t
*
p_obj
,
const
guid_t
*
p_guid
);
int
ASF_CountObject
(
asf_object_t
*
p_obj
,
const
guid_t
*
p_guid
);
asf_object_t
*
ASF_FindObject
(
asf_object_t
*
p_obj
,
const
guid_t
*
p_guid
,
int
i_number
);
#define ASF_FindObject( a, b, c ) __ASF_FindObject( (asf_object_t*)(a), b, c )
void
*
__
ASF_FindObject
(
asf_object_t
*
p_obj
,
const
guid_t
*
p_guid
,
int
i_number
);
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