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
ebad5120
Verified
Commit
ebad5120
authored
3 years ago
by
Silas Della Contrada
Browse files
Options
Downloads
Patches
Plain Diff
Fixed issue with decoderConfig in Player
parent
9538665b
No related branches found
No related tags found
1 merge request
!17
Draft: Resolve "Migrate frame passing to libProcessingGraph"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Player/main.cpp
+1
-1
1 addition, 1 deletion
Player/main.cpp
with
1 addition
and
1 deletion
Player/main.cpp
+
1
−
1
View file @
ebad5120
...
...
@@ -129,7 +129,7 @@ int main(int argc, char *argv[]) {
auto
demuxer
=
std
::
make_shared
<
AVQt
::
Demuxer
>
(
std
::
move
(
demuxerConfig
),
registry
);
AVQt
::
VideoDecoder
::
Config
videoDecoderConfig
{};
videoDecoderConfig
.
decoderPriority
=
{
"VAAPI"
}
;
videoDecoderConfig
.
decoderPriority
<<
"VAAPI"
;
auto
decoder1
=
std
::
make_shared
<
AVQt
::
VideoDecoder
>
(
videoDecoderConfig
,
registry
);
// auto decoder2 = std::make_shared<AVQt::VideoDecoder>("VAAPI", registry);
// auto decoder3 = std::make_shared<AVQt::VideoDecoder>("VAAPI", registry);
...
...
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