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
326c1ca9
Commit
326c1ca9
authored
Jan 20, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* demux: fixed psz_path value in demux_t.
parent
1427de90
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
src/input/demux.c
src/input/demux.c
+8
-1
No files found.
src/input/demux.c
View file @
326c1ca9
...
...
@@ -2,7 +2,7 @@
* demux.c
*****************************************************************************
* Copyright (C) 1999-2004 VideoLAN
* $Id: demux.c,v 1.
8 2004/01/17 12:03:19 gbazin
Exp $
* $Id: demux.c,v 1.
9 2004/01/20 14:48:37 fenrir
Exp $
*
* Author: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -202,6 +202,10 @@ demux_t *__demux2_New( vlc_object_t *p_obj,
p_demux
->
psz_demux
=
strdup
(
psz
);
}
}
else
{
p_demux
->
psz_path
=
strdup
(
psz_mrl
);
}
free
(
psz_dup
);
...
...
@@ -217,6 +221,9 @@ demux_t *__demux2_New( vlc_object_t *p_obj,
{
p_demux
->
psz_path
=
strdup
(
""
);
}
msg_Dbg
(
p_obj
,
"demux2_New: '%s' -> access='%s' demux='%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
;
...
...
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