Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
49605782
Commit
49605782
authored
Mar 31, 2003
by
sigmunau
Browse files
Changed a duplicate string, and removed an info string that isn't really
useful
parent
bae3f95d
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/asf/asf.c
View file @
49605782
...
...
@@ -2,7 +2,7 @@
* asf.c : ASFv01 file input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: asf.c,v 1.2
4
2003/03/
16 13:11:28 fenrir
Exp $
* $Id: asf.c,v 1.2
5
2003/03/
31 23:32:44 sigmunau
Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -323,9 +323,8 @@ static int Activate( vlc_object_t * p_this )
p_bih
->
biPlanes
=
GetDWLE
(
p_data
+
12
);
input_AddInfo
(
p_cat
,
_
(
"Planes"
),
"%d"
,
p_bih
->
biPlanes
);
p_bih
->
biBitCount
=
GetDWLE
(
p_data
+
14
);
input_AddInfo
(
p_cat
,
_
(
"Bits
p
er
p
ixel"
),
"%d"
,
p_bih
->
biBitCount
);
input_AddInfo
(
p_cat
,
_
(
"Bits
P
er
P
ixel"
),
"%d"
,
p_bih
->
biBitCount
);
p_bih
->
biCompression
=
GetDWLE
(
p_data
+
16
);
input_AddInfo
(
p_cat
,
_
(
"Compression Rate"
),
"%d"
,
p_bih
->
biCompression
);
p_bih
->
biSizeImage
=
GetDWLE
(
p_data
+
20
);
input_AddInfo
(
p_cat
,
_
(
"Image Size"
),
"%d"
,
p_bih
->
biSizeImage
);
p_bih
->
biXPelsPerMeter
=
GetDWLE
(
p_data
+
24
);
...
...
@@ -796,7 +795,7 @@ static int Demux( input_thread_t *p_input )
{
off_t
i_offset
;
msleep
(
DEFAULT_PTS_DELAY
);
msleep
(
p_input
->
i_pts_delay
);
i_offset
=
ASF_TellAbsolute
(
p_input
)
-
p_demux
->
i_data_begin
;
if
(
i_offset
<
0
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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