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
e4fe636a
Commit
e4fe636a
authored
Jan 29, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use playlist_Item* functions
parent
499a3845
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
23 deletions
+57
-23
modules/demux/asf/asf.c
modules/demux/asf/asf.c
+57
-23
No files found.
modules/demux/asf/asf.c
View file @
e4fe636a
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* asf.c : ASF demux module
* asf.c : ASF demux module
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* Copyright (C) 2002-2003 VideoLAN
* $Id: asf.c,v 1.
49 2004/01/25 20:05:28 hartman
Exp $
* $Id: asf.c,v 1.
50 2004/01/29 18:02:58 zorglub
Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
...
@@ -102,6 +102,7 @@ static int Open( vlc_object_t * p_this )
...
@@ -102,6 +102,7 @@ static int Open( vlc_object_t * p_this )
vlc_bool_t
b_seekable
;
vlc_bool_t
b_seekable
;
input_info_category_t
*
p_cat
;
input_info_category_t
*
p_cat
;
playlist_item_t
*
p_item
=
NULL
;
/* a little test to see if it could be a asf stream */
/* a little test to see if it could be a asf stream */
if
(
input_Peek
(
p_input
,
&
p_peek
,
16
)
<
16
)
if
(
input_Peek
(
p_input
,
&
p_peek
,
16
)
<
16
)
...
@@ -288,6 +289,17 @@ static int Open( vlc_object_t * p_this )
...
@@ -288,6 +289,17 @@ static int Open( vlc_object_t * p_this )
p_cat
=
input_InfoCategory
(
p_input
,
_
(
"Asf"
)
);
p_cat
=
input_InfoCategory
(
p_input
,
_
(
"Asf"
)
);
playlist_t
*
p_playlist
=
(
playlist_t
*
)
vlc_object_find
(
p_input
,
playlist_t
*
p_playlist
=
(
playlist_t
*
)
vlc_object_find
(
p_input
,
VLC_OBJECT_PLAYLIST
,
FIND_PARENT
);
VLC_OBJECT_PLAYLIST
,
FIND_PARENT
);
if
(
p_playlist
)
{
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
p_item
=
playlist_ItemGetByPos
(
p_playlist
,
-
1
);
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
}
if
(
p_item
)
{
vlc_mutex_lock
(
&
p_item
->
lock
);
}
if
(
p_sys
->
i_length
>
0
)
if
(
p_sys
->
i_length
>
0
)
{
{
int64_t
i_second
=
p_sys
->
i_length
/
(
int64_t
)
1000000
;
int64_t
i_second
=
p_sys
->
i_length
/
(
int64_t
)
1000000
;
...
@@ -296,9 +308,9 @@ static int Open( vlc_object_t * p_this )
...
@@ -296,9 +308,9 @@ static int Open( vlc_object_t * p_this )
(
int
)(
i_second
/
36000
),
(
int
)(
i_second
/
36000
),
(
int
)((
i_second
/
60
)
%
60
),
(
int
)((
i_second
/
60
)
%
60
),
(
int
)(
i_second
%
60
)
);
(
int
)(
i_second
%
60
)
);
if
(
p_
playlist
)
if
(
p_
item
)
{
{
playlist_
AddInfo
(
p_playlist
,
-
1
,
_
(
"Asf"
),
_
(
"Length"
),
playlist_
ItemAddInfo
(
p_item
,
_
(
"Asf"
),
_
(
"Length"
),
"%d:%d:%d"
,
"%d:%d:%d"
,
(
int
)(
i_second
/
36000
),
(
int
)(
i_second
/
36000
),
(
int
)((
i_second
/
60
)
%
60
),
(
int
)((
i_second
/
60
)
%
60
),
...
@@ -306,9 +318,9 @@ static int Open( vlc_object_t * p_this )
...
@@ -306,9 +318,9 @@ static int Open( vlc_object_t * p_this )
}
}
}
}
input_AddInfo
(
p_cat
,
_
(
"Number of streams"
),
"%d"
,
p_sys
->
i_streams
);
input_AddInfo
(
p_cat
,
_
(
"Number of streams"
),
"%d"
,
p_sys
->
i_streams
);
if
(
p_
playlist
)
if
(
p_
item
)
{
{
playlist_
AddInfo
(
p_playlist
,
-
1
,
_
(
"Asf"
),
_
(
"Number of streams"
),
"%d"
,
playlist_
ItemAddInfo
(
p_item
,
_
(
"Asf"
),
_
(
"Number of streams"
),
"%d"
,
p_sys
->
i_streams
);
p_sys
->
i_streams
);
}
}
...
@@ -318,35 +330,50 @@ static int Open( vlc_object_t * p_this )
...
@@ -318,35 +330,50 @@ static int Open( vlc_object_t * p_this )
if
(
*
p_cd
->
psz_title
)
if
(
*
p_cd
->
psz_title
)
{
{
input_AddInfo
(
p_cat
,
_
(
"Title"
),
p_cd
->
psz_title
);
input_AddInfo
(
p_cat
,
_
(
"Title"
),
p_cd
->
psz_title
);
playlist_AddInfo
(
p_playlist
,
-
1
,
_
(
"Asf"
),
_
(
"Title"
),
if
(
p_item
)
p_cd
->
psz_title
);
{
playlist_SetName
(
p_playlist
,
-
1
,
p_cd
->
psz_title
);
playlist_ItemAddInfo
(
p_item
,
_
(
"Asf"
),
_
(
"Title"
),
p_cd
->
psz_title
);
playlist_ItemSetName
(
p_item
,
p_cd
->
psz_title
);
}
}
}
if
(
p_cd
->
psz_author
)
if
(
p_cd
->
psz_author
)
{
{
input_AddInfo
(
p_cat
,
_
(
"Author"
),
p_cd
->
psz_author
);
input_AddInfo
(
p_cat
,
_
(
"Author"
),
p_cd
->
psz_author
);
playlist_AddInfo
(
p_playlist
,
-
1
,
_
(
"Asf"
),
_
(
"Author"
),
if
(
p_item
)
p_cd
->
psz_author
);
{
playlist_AddInfo
(
p_playlist
,
-
1
,
_
(
"General"
),
_
(
"Author"
),
playlist_ItemAddInfo
(
p_item
,
_
(
"Asf"
),
_
(
"Author"
),
p_cd
->
psz_author
);
p_cd
->
psz_author
);
playlist_ItemAddInfo
(
p_item
,
_
(
"General"
),
_
(
"Author"
),
p_cd
->
psz_author
);
}
}
}
if
(
p_cd
->
psz_copyright
)
if
(
p_cd
->
psz_copyright
)
{
{
input_AddInfo
(
p_cat
,
_
(
"Copyright"
),
p_cd
->
psz_copyright
);
input_AddInfo
(
p_cat
,
_
(
"Copyright"
),
p_cd
->
psz_copyright
);
playlist_AddInfo
(
p_playlist
,
-
1
,
_
(
"Asf"
),
_
(
"Copyright"
),
if
(
p_item
)
p_cd
->
psz_copyright
);
{
playlist_ItemAddInfo
(
p_item
,
_
(
"Asf"
),
_
(
"Copyright"
),
p_cd
->
psz_copyright
);
}
}
}
if
(
*
p_cd
->
psz_description
)
if
(
*
p_cd
->
psz_description
)
{
{
input_AddInfo
(
p_cat
,
_
(
"Description"
),
p_cd
->
psz_description
);
input_AddInfo
(
p_cat
,
_
(
"Description"
),
p_cd
->
psz_description
);
playlist_AddInfo
(
p_playlist
,
-
1
,
_
(
"Asf"
),
_
(
"Description"
),
if
(
p_item
)
p_cd
->
psz_description
);
{
playlist_ItemAddInfo
(
p_item
,
_
(
"Asf"
),
_
(
"Description"
),
p_cd
->
psz_description
);
}
}
}
if
(
*
p_cd
->
psz_rating
)
if
(
*
p_cd
->
psz_rating
)
{
{
input_AddInfo
(
p_cat
,
_
(
"Rating"
),
p_cd
->
psz_rating
);
input_AddInfo
(
p_cat
,
_
(
"Rating"
),
p_cd
->
psz_rating
);
playlist_AddInfo
(
p_playlist
,
-
1
,
_
(
"Asf"
),
_
(
"Rating"
),
if
(
p_item
)
p_cd
->
psz_rating
);
{
playlist_ItemAddInfo
(
p_item
,
_
(
"Asf"
),
_
(
"Rating"
),
p_cd
->
psz_rating
);
}
}
}
}
}
...
@@ -367,18 +394,25 @@ static int Open( vlc_object_t * p_this )
...
@@ -367,18 +394,25 @@ static int Open( vlc_object_t * p_this )
{
{
input_AddInfo
(
p_cat
,
_
(
"Codec name"
),
input_AddInfo
(
p_cat
,
_
(
"Codec name"
),
p_cl
->
codec
[
i_stream
].
psz_name
);
p_cl
->
codec
[
i_stream
].
psz_name
);
playlist_AddInfo
(
p_playlist
,
-
1
,
psz_cat
,
_
(
"Codec name"
),
p_cl
->
codec
[
i_stream
].
psz_name
);
input_AddInfo
(
p_cat
,
_
(
"Codec description"
),
input_AddInfo
(
p_cat
,
_
(
"Codec description"
),
p_cl
->
codec
[
i_stream
].
psz_description
);
p_cl
->
codec
[
i_stream
].
psz_description
);
playlist_AddInfo
(
p_playlist
,
-
1
,
psz_cat
,
if
(
p_item
)
_
(
"Codec description"
),
{
p_cl
->
codec
[
i_stream
].
psz_description
);
playlist_ItemAddInfo
(
p_item
,
psz_cat
,
_
(
"Codec name"
),
p_cl
->
codec
[
i_stream
].
psz_name
);
playlist_ItemAddInfo
(
p_item
,
psz_cat
,
_
(
"Codec description"
),
p_cl
->
codec
[
i_stream
].
psz_description
);
}
}
}
free
(
psz_cat
);
free
(
psz_cat
);
i_stream
++
;
i_stream
++
;
}
}
}
}
if
(
p_item
)
{
vlc_mutex_unlock
(
&
p_item
->
lock
);
}
if
(
p_playlist
)
vlc_object_release
(
p_playlist
);
if
(
p_playlist
)
vlc_object_release
(
p_playlist
);
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
...
...
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