Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
451
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
d6c8ad45
Commit
d6c8ad45
authored
14 years ago
by
Jean-Baptiste Kempf
Browse files
Options
Downloads
Patches
Plain Diff
Demux image: remove \t in source code
parent
5ff1f154
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/demux/image.c
+5
-5
5 additions, 5 deletions
modules/demux/image.c
with
5 additions
and
5 deletions
modules/demux/image.c
+
5
−
5
View file @
d6c8ad45
...
...
@@ -104,7 +104,7 @@ struct demux_sys_t
bool
is_realtime
;
mtime_t
pts_origin
;
mtime_t
pts_next
;
date_t
pts
;
date_t
pts
;
};
static
block_t
*
Load
(
demux_t
*
demux
)
...
...
@@ -218,7 +218,7 @@ static int Control(demux_t *demux, int query, va_list args)
{
demux_sys_t
*
sys
=
demux
->
p_sys
;
switch
(
query
)
{
switch
(
query
)
{
case
DEMUX_GET_POSITION
:
{
double
*
position
=
va_arg
(
args
,
double
*
);
if
(
sys
->
duration
>
0
)
...
...
@@ -267,9 +267,9 @@ static int Control(demux_t *demux, int query, va_list args)
case
DEMUX_GET_META
:
case
DEMUX_HAS_UNSUPPORTED_META
:
case
DEMUX_GET_ATTACHMENTS
:
default:
return
VLC_EGENERIC
;
}
default:
return
VLC_EGENERIC
;
}
}
static
bool
IsBmp
(
stream_t
*
s
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment