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
408f3627
Commit
408f3627
authored
Sep 23, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless stuff.
parent
3b7408fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
src/input/input.c
src/input/input.c
+0
-5
No files found.
src/input/input.c
View file @
408f3627
...
...
@@ -356,7 +356,6 @@ int __input_SecondaryPreparse( vlc_object_t *p_parent, input_item_t *p_item )
p_me
=
vlc_object_create
(
p_parent
,
VLC_OBJECT_META_ENGINE
);
p_me
->
i_flags
|=
OBJECT_FLAGS_NOINTERACT
;
p_me
->
i_mandatory
=
VLC_META_ENGINE_TITLE
|
VLC_META_ENGINE_AUTHOR
|
VLC_META_ENGINE_ARTIST
|
VLC_META_ENGINE_ART_URL
;
p_me
->
i_optional
=
0
;
...
...
@@ -427,14 +426,10 @@ int __input_SecondaryPreparse( vlc_object_t *p_parent, input_item_t *p_item )
void
*
p_buffer
=
malloc
(
1
<<
16
);
long
int
l_read
;
p_file
=
utf8_fopen
(
psz_filename
+
7
,
"w"
);
printf
(
"a %p
\n
"
);
while
(
(
l_read
=
stream_Read
(
p_stream
,
p_buffer
,
1
<<
16
)
)
)
{
printf
(
"%d
\n
"
,
l_read
);
fwrite
(
p_buffer
,
l_read
,
1
,
p_file
);
printf
(
"////
\n
"
);
}
printf
(
"a
\n
"
);
free
(
p_buffer
);
fclose
(
p_file
);
stream_Delete
(
p_stream
);
...
...
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