Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
49605782
Commit
49605782
authored
Mar 31, 2003
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
modules/demux/asf/asf.c
modules/demux/asf/asf.c
+3
-4
No files found.
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
per p
ixel"
),
"%d"
,
p_bih
->
biBitCount
);
input_AddInfo
(
p_cat
,
_
(
"Bits
Per 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
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