Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LibAVQt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Silas Della Contrada
LibAVQt
Commits
28769b5b
Verified
Commit
28769b5b
authored
3 years ago
by
Silas Della Contrada
Browse files
Options
Downloads
Patches
Plain Diff
Fixed includes
parent
f9e9dc62
No related branches found
Branches containing commit
No related tags found
1 merge request
!17
Draft: Resolve "Migrate frame passing to libProcessingGraph"
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
AVQt/CMakeLists.txt
+2
-2
2 additions, 2 deletions
AVQt/CMakeLists.txt
AVQt/include/AVQt/AVQt
+1
-1
1 addition, 1 deletion
AVQt/include/AVQt/AVQt
AVQt/include/AVQt/AVQt.h
+16
-16
16 additions, 16 deletions
AVQt/include/AVQt/AVQt.h
Player/main.cpp
+1
-1
1 addition, 1 deletion
Player/main.cpp
with
20 additions
and
20 deletions
AVQt/CMakeLists.txt
+
2
−
2
View file @
28769b5b
...
@@ -8,7 +8,7 @@ function(list_transform_prepend var_out var_in prefix)
...
@@ -8,7 +8,7 @@ function(list_transform_prepend var_out var_in prefix)
set
(
${
var_out
}
"
${
temp
}
"
PARENT_SCOPE
)
set
(
${
var_out
}
"
${
temp
}
"
PARENT_SCOPE
)
endfunction
()
endfunction
()
set
(
PROJECT_NAME AVQt
)
set
(
PROJECT_NAME
include/AVQt/
AVQt
)
set
(
CMAKE_CXX_STANDARD 20
)
set
(
CMAKE_CXX_STANDARD 20
)
set
(
CMAKE_AUTOMOC on
)
set
(
CMAKE_AUTOMOC on
)
...
@@ -43,7 +43,7 @@ find_package(Qt${QT_VERSION} COMPONENTS ${REQUIRED_LIBS} REQUIRED)
...
@@ -43,7 +43,7 @@ find_package(Qt${QT_VERSION} COMPONENTS ${REQUIRED_LIBS} REQUIRED)
set
(
SOURCES
set
(
SOURCES
AVQtShader.qrc
AVQtShader.qrc
AVQt.h
include/AVQt/
AVQt.h
global.hpp
global.hpp
global.cpp
global.cpp
...
...
This diff is collapsed.
Click to expand it.
AVQt/AVQt
→
AVQt/include/
AVQt/AVQt
+
1
−
1
View file @
28769b5b
...
@@ -17,4 +17,4 @@
...
@@ -17,4 +17,4 @@
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
// THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include
<
AVQt.h
>
#include
"
AVQt.h
"
This diff is collapsed.
Click to expand it.
AVQt/AVQt.h
→
AVQt/include/
AVQt/AVQt.h
+
16
−
16
View file @
28769b5b
...
@@ -19,29 +19,29 @@
...
@@ -19,29 +19,29 @@
#include
<qglobal.h>
#include
<qglobal.h>
#include
<AVQt/
communication/IComponent.hpp
>
#include
"
communication/IComponent.hpp
"
#include
<AVQt/
communication/Message.hpp
>
#include
"
communication/Message.hpp
"
#include
<AVQt/
communication/PacketPadParams.hpp
>
#include
"
communication/PacketPadParams.hpp
"
#include
<AVQt/
communication/VideoPadParams.hpp
>
#include
"
communication/VideoPadParams.hpp
"
#include
<AVQt/
input/Demuxer.hpp
>
#include
"
input/Demuxer.hpp
"
#include
"AVQt/decoder/VideoDecoder.hpp"
#include
"AVQt/decoder/VideoDecoder.hpp"
#include
"AVQt/encoder/VideoEncoder.hpp"
#include
"AVQt/encoder/VideoEncoder.hpp"
#include
<AVQt/
decoder/IVideoDecoderImpl.hpp
>
#include
"
decoder/IVideoDecoderImpl.hpp
"
#include
<AVQt/
decoder/VideoDecoderFactory.hpp
>
#include
"
decoder/VideoDecoderFactory.hpp
"
#include
<AVQt/
encoder/IVideoEncoderImpl.hpp
>
#include
"
encoder/IVideoEncoderImpl.hpp
"
#include
<AVQt/
encoder/VideoEncoderFactory.hpp
>
#include
"
encoder/VideoEncoderFactory.hpp
"
#include
<AVQt/
filter/VaapiYuvToRgbMapper.hpp
>
#include
"
filter/VaapiYuvToRgbMapper.hpp
"
#include
<AVQt/
renderers/IOpenGLFrameMapper.hpp
>
#include
"
renderers/IOpenGLFrameMapper.hpp
"
#include
<AVQt/
renderers/OpenGLFrameMapperFactory.hpp
>
#include
"
renderers/OpenGLFrameMapperFactory.hpp
"
#include
<AVQt/
capture/DesktopCaptureFactory.hpp
>
#include
"
capture/DesktopCaptureFactory.hpp
"
#include
<AVQt/
capture/DesktopCapturer.hpp
>
#include
"
capture/DesktopCapturer.hpp
"
#include
<AVQt/
capture/IDesktopCaptureImpl.hpp
>
#include
"
capture/IDesktopCaptureImpl.hpp
"
#ifdef QT_DEBUG
#ifdef QT_DEBUG
#include
<AVQt/
debug/CommandConsumer.hpp
>
#include
"
debug/CommandConsumer.hpp
"
#endif
#endif
This diff is collapsed.
Click to expand it.
Player/main.cpp
+
1
−
1
View file @
28769b5b
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
#include
"FrameSaverAccelerated.hpp"
#include
"FrameSaverAccelerated.hpp"
#include
"OpenGlWidgetRenderer.hpp"
#include
"OpenGlWidgetRenderer.hpp"
#include
<AVQt>
#include
<AVQt
/AVQt
>
#include
<pgraph/api/Link.hpp>
#include
<pgraph/api/Link.hpp>
#include
<pgraph/api/Pad.hpp>
#include
<pgraph/api/Pad.hpp>
#include
<pgraph_network/data/ApiInfo.hpp>
#include
<pgraph_network/data/ApiInfo.hpp>
...
...
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