Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
0ef46dbe
Commit
0ef46dbe
authored
Apr 28, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imem: remove tab in sourcecode
parent
a34b1862
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/access/imem.c
modules/access/imem.c
+6
-6
No files found.
modules/access/imem.c
View file @
0ef46dbe
...
@@ -245,10 +245,10 @@ static int OpenCommon(vlc_object_t *object, imem_sys_t **sys_ptr, const char *ps
...
@@ -245,10 +245,10 @@ static int OpenCommon(vlc_object_t *object, imem_sys_t **sys_ptr, const char *ps
{
{
char
*
tmp
;
char
*
tmp
;
/* */
/* */
imem_sys_t
*
sys
=
calloc
(
1
,
sizeof
(
*
sys
));
imem_sys_t
*
sys
=
calloc
(
1
,
sizeof
(
*
sys
));
if
(
!
sys
)
if
(
!
sys
)
return
VLC_ENOMEM
;
return
VLC_ENOMEM
;
/* Read the user functions */
/* Read the user functions */
tmp
=
var_InheritString
(
object
,
"imem-get"
);
tmp
=
var_InheritString
(
object
,
"imem-get"
);
...
@@ -411,9 +411,9 @@ static int OpenDemux(vlc_object_t *object)
...
@@ -411,9 +411,9 @@ static int OpenDemux(vlc_object_t *object)
if
(
OpenCommon
(
object
,
&
sys
,
demux
->
psz_path
))
if
(
OpenCommon
(
object
,
&
sys
,
demux
->
psz_path
))
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
/* ES format */
/* ES format */
es_format_t
fmt
;
es_format_t
fmt
;
es_format_Init
(
&
fmt
,
UNKNOWN_ES
,
0
);
es_format_Init
(
&
fmt
,
UNKNOWN_ES
,
0
);
fmt
.
i_id
=
var_InheritInteger
(
object
,
"imem-id"
);
fmt
.
i_id
=
var_InheritInteger
(
object
,
"imem-id"
);
fmt
.
i_group
=
var_InheritInteger
(
object
,
"imem-group"
);
fmt
.
i_group
=
var_InheritInteger
(
object
,
"imem-group"
);
...
@@ -479,7 +479,7 @@ static int OpenDemux(vlc_object_t *object)
...
@@ -479,7 +479,7 @@ static int OpenDemux(vlc_object_t *object)
fmt
.
psz_language
=
var_InheritString
(
object
,
"imem-language"
);
fmt
.
psz_language
=
var_InheritString
(
object
,
"imem-language"
);
sys
->
es
=
es_out_Add
(
demux
->
out
,
&
fmt
);
sys
->
es
=
es_out_Add
(
demux
->
out
,
&
fmt
);
es_format_Clean
(
&
fmt
);
es_format_Clean
(
&
fmt
);
if
(
!
sys
->
es
)
{
if
(
!
sys
->
es
)
{
...
...
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