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
b59d0081
Commit
b59d0081
authored
Aug 25, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atmo filter: disable until it is fixed
parent
fa7f6b7d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
configure.ac
configure.ac
+0
-1
modules/video_filter/Modules.am
modules/video_filter/Modules.am
+1
-1
modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
+3
-0
No files found.
configure.ac
View file @
b59d0081
...
...
@@ -5210,7 +5210,6 @@ AC_CONFIG_FILES([
modules/stream_out/Makefile
modules/video_chroma/Makefile
modules/video_filter/Makefile
modules/video_filter/atmo/Makefile
modules/video_filter/dynamicoverlay/Makefile
modules/video_output/Makefile
modules/video_output/msw/Makefile
...
...
modules/video_filter/Modules.am
View file @
b59d0081
SUBDIRS =
atmo
dynamicoverlay
SUBDIRS = dynamicoverlay
SOURCES_mosaic = mosaic.c mosaic.h
SOURCES_transform = transform.c
SOURCES_invert = invert.c
...
...
modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
View file @
b59d0081
...
...
@@ -106,6 +106,7 @@ void CAtmoExternalCaptureInput::DeliverNewSourceDataPaket(BITMAPINFOHEADER *bmpI
memcpy
(
m_pCurrentFramePixels
,
pixelData
,
PixelDataSize
);
}
#if defined(_ATMO_VLC_PLUGIN_)
#error This makes no sense!
vlc_mutex_lock
(
&
m_WakeupLock
);
vlc_cond_signal
(
&
m_WakeupCond
);
vlc_mutex_unlock
(
&
m_WakeupLock
);
...
...
@@ -173,8 +174,10 @@ DWORD CAtmoExternalCaptureInput::Execute(void) {
void
CAtmoExternalCaptureInput
::
WaitForNextFrame
(
DWORD
timeout
)
{
this
->
m_FrameArrived
=
ATMO_FALSE
;
#error m_FrameArrived is not protected (no, volatile does not work)
for
(
DWORD
i
=
0
;(
i
<
timeout
)
&&
!
m_FrameArrived
;
i
++
)
#if defined (_ATMO_VLC_PLUGIN_)
#error A condition variable or a semaphore is needed.
msleep
(
1000
);
#else
Sleep
(
1
);
...
...
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