Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
cbf5a023
Commit
cbf5a023
authored
May 30, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* access: implement access2_nEw (untested).
parent
26603c85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
80 deletions
+28
-80
src/input/access.c
src/input/access.c
+28
-80
No files found.
src/input/access.c
View file @
cbf5a023
...
...
@@ -58,25 +58,20 @@ int access_vaControlDefault( input_thread_t *p_input, int i_query, va_list args
*****************************************************************************/
access_t
*
__access2_New
(
vlc_object_t
*
p_obj
,
char
*
psz_mrl
)
{
msg_Err
(
p_obj
,
"access2_New not yet implemented"
);
return
NULL
;
#if 0
access_t
*
p_access
=
vlc_object_create
(
p_obj
,
VLC_OBJECT_ACCESS
);
char
*
psz_dup
=
strdup
(
psz_mrl
?
psz_mrl
:
""
);
char
*
psz
=
strchr
(
psz_dup
,
':'
);
char *psz_module;
if( p_
demux
== NULL )
if
(
p_
access
==
NULL
)
{
free
(
psz_dup
);
return
NULL
;
}
/* Parse URL */
p_demux->psz_access = NULL;
p_demux->psz_demux = NULL;
p_demux->psz_path = NULL;
p_access
->
psz_access
=
NULL
;
p_access
->
psz_path
=
NULL
;
if
(
psz
)
{
...
...
@@ -86,105 +81,58 @@ access_t *__access2_New( vlc_object_t *p_obj, char *psz_mrl )
{
psz
+=
2
;
}
p_
demux
->psz_path = strdup( psz );
p_
access
->
psz_path
=
strdup
(
psz
);
psz
=
strchr
(
psz_dup
,
'/'
);
if
(
psz
)
{
*
psz
++
=
'\0'
;
p_demux->psz_access = strdup( psz_dup );
p_demux->psz_demux = strdup( psz );
p_access
->
psz_access
=
strdup
(
psz_dup
);
}
}
else
{
p_
demux
->psz_path = strdup( psz_mrl );
p_
access
->
psz_path
=
strdup
(
psz_mrl
);
}
free
(
psz_dup
);
if( p_demux->psz_access == NULL )
p_access
->
psz_demux
=
strdup
(
""
);
if
(
p_access
->
psz_access
==
NULL
)
{
p_
demux
->psz_access = strdup( "" );
p_
access
->
psz_access
=
strdup
(
""
);
}
if( p_
demux->psz_demux
== NULL )
if
(
p_
access
->
psz_path
==
NULL
)
{
p_
demux->psz_demux
= strdup( "" );
p_
access
->
psz_path
=
strdup
(
""
);
}
if( p_demux->psz_path == NULL )
{
p_demux->psz_path = strdup( "" );
}
msg_Dbg( p_obj, "demux2_New: '%s' -> access='%s' demux='%s' path='%s'",
msg_Dbg
(
p_obj
,
"access2_New: '%s' -> access='%s' path='%s'"
,
psz_mrl
,
p_demux->psz_access, p_demux->psz_demux, p_demux->psz_path );
p_demux->s = s;
p_demux->out = out;
p_access
->
psz_access
,
p_access
->
psz_path
);
p_demux->pf_demux = NULL;
p_demux->pf_control = NULL;
p_demux->p_sys = NULL;
psz_module = p_demux->psz_demux;
if( *psz_module == '\0' && strrchr( p_demux->psz_path, '.' ) )
{
/* XXX: add only file without any problem here and with strong detection.
* - no .mp3, .a52, ... (aac is added as it works only by file ext anyway
* - wav can't be added 'cause of a52 and dts in them as raw audio
*/
static struct { char *ext; char *demux; } exttodemux[] =
{
{ "aac", "aac" },
{ "aiff", "aiff" },
{ "asf", "asf" }, { "wmv", "asf" }, { "wma", "asf" },
{ "avi", "avi" },
{ "au", "au" },
{ "flac", "flac" },
{ "dv", "dv" },
{ "m3u", "m3u" },
{ "mkv", "mkv" }, { "mka", "mkv" }, { "mks", "mkv" },
{ "mp4", "mp4" }, { "m4a", "mp4" }, { "mov", "mp4" }, { "moov", "mp4" },
{ "mod", "mod" }, { "xm", "mod" },
{ "nsv", "nsv" },
{ "ogg", "ogg" }, { "ogm", "ogg" },
{ "pva", "pva" },
{ "rm", "rm" },
{ "", "" },
};
char *psz_ext = strrchr( p_demux->psz_path, '.' ) + 1;
int i;
for( i = 0; exttodemux[i].ext != NULL; i++ )
{
if( !strcasecmp( psz_ext, exttodemux[i].ext ) )
{
psz_module = exttodemux[i].demux;
break;
}
}
}
p_access
->
pf_read
=
NULL
;
p_access
->
pf_block
=
NULL
;
p_access
->
pf_seek
=
NULL
;
p_access
->
pf_control
=
NULL
;
p_access
->
p_sys
=
NULL
;
/* Before module_Need (for var_Create...) */
vlc_object_attach( p_
demux
, p_obj );
vlc_object_attach
(
p_
access
,
p_obj
);
p_demux->p_module =
module_Need( p_demux, "demux2", psz_module,
!strcmp( psz_module, p_demux->psz_demux ) ? VLC_TRUE : VLC_FALSE );
p_access
->
p_module
=
module_Need
(
p_access
,
"access2"
,
p_access
->
psz_access
,
VLC_FALSE
);
if( p_
demux
->p_module == NULL )
if
(
p_
access
->
p_module
==
NULL
)
{
vlc_object_detach( p_
demux
);
free( p_
demux->psz_path
);
free( p_
demux->psz_demux
);
free( p_
demux->psz_access
);
vlc_object_destroy( p_
demux
);
vlc_object_detach
(
p_
access
);
free
(
p_
access
->
psz_access
);
free
(
p_
access
->
psz_path
);
free
(
p_
access
->
psz_demux
);
vlc_object_destroy
(
p_
access
);
return
NULL
;
}
return p_demux;
#endif
return
p_access
;
}
/*****************************************************************************
...
...
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