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
c1458b72
Commit
c1458b72
authored
Apr 25, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Removed my optimization attempt.
parent
6783b216
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
src/video_output/video_output.c
src/video_output/video_output.c
+1
-4
No files found.
src/video_output/video_output.c
View file @
c1458b72
...
...
@@ -5,7 +5,7 @@
* thread, and destroy a previously oppened video output thread.
*****************************************************************************
* Copyright (C) 2000 VideoLAN
* $Id: video_output.c,v 1.1
19 2001/04/25 10:22:33
massiot Exp $
* $Id: video_output.c,v 1.1
20 2001/04/25 20:54:07
massiot Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
*
...
...
@@ -1617,8 +1617,6 @@ static void SetBufferPicture( vout_thread_t *p_vout, picture_t *p_pic )
i_data_size
=
(
p_buffer
->
pi_area_end
[
i_area
]
-
p_buffer
->
pi_area_begin
[
i_area
]
+
1
)
*
p_vout
->
i_bytes_per_line
;
p_data
=
(
u64
*
)
(
p_buffer
->
p_data
+
p_vout
->
i_bytes_per_line
*
p_buffer
->
pi_area_begin
[
i_area
]);
#if 0
/* Removed for performance --Meuuh */
for
(
i_data_index
=
i_data_size
/
256
;
i_data_index
--
;
)
{
/* Clear 256 bytes block */
...
...
@@ -1642,7 +1640,6 @@ static void SetBufferPicture( vout_thread_t *p_vout, picture_t *p_pic )
/* Clear remaining bytes */
*
p_data8
++
=
0
;
}
#endif
}
/*
...
...
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