-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature add linux gstreamer support #11
Open
hhoegelo
wants to merge
31
commits into
NativeInstruments:master
Choose a base branch
from
hhoegelo:feature-add-linux-gstreamer-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 9 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
717b048
adding support for mp3, m4a and wma files on linux by using gstreamer…
hhoegelo 5274d99
fixed some tests, still some failing
hhoegelo 9130479
improve readability
hhoegelo 693b84d
add gstreamer dependencies for ci run
hhoegelo e9254c1
fix intendation issue
hhoegelo 07341d1
blindflight: configureing ubuntu packages not having ubuntu
hhoegelo 8ec93ff
blindflight: configureing ubuntu packages not having ubuntu
hhoegelo f46c5d2
fix formatting (apply clang-format)
hhoegelo d147f11
fix alignment
hhoegelo 1c58318
incorporated some of the pull request comments
hhoegelo 5736624
Merge branch 'master' into feature-add-linux-gstreamer-support
9019049
fix retrieval of num_frames info
9ed24e3
use absolute_position for seeking, return -1 on seek error
e45327e
improve error reporting for failing streams
1823462
change m_position type to std::streampos
76366dc
read_interlaced_test: add more valuable test output
be51e20
Merge branch 'master' into feature-add-linux-gstreamer-support-marcrambo
4643b10
adding support for mp3, m4a and wma files on linux by using gstreamer…
hhoegelo 8f1123b
fixed some tests, still some failing
hhoegelo e6a05c1
improve readability
hhoegelo 7146d73
add gstreamer dependencies for ci run
hhoegelo eea5bb4
fix intendation issue
hhoegelo 48c73f2
blindflight: configureing ubuntu packages not having ubuntu
hhoegelo 7dde3c7
blindflight: configureing ubuntu packages not having ubuntu
hhoegelo 44d9df9
fix formatting (apply clang-format)
hhoegelo 7023f2f
fix alignment
hhoegelo 59bd834
incorporated some of the pull request comments
hhoegelo 54ea50d
incorporated some of sdroege's comments
hhoegelo 4d82bdc
fixup
hhoegelo cf1e7a8
removed GstApp dependency
hhoegelo b4d9d4c
merged marc boucek's fixes
hhoegelo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we should make this the default behavior, since gstreamer is LGLP licensed? I'd say users should be required to manually enable it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would it be reasonable to enable these options if we detect the presence of gstreamer? or leave it manual... For
APPLE
andWIN32
cases, we can rely on SDKs that are guaranteed part of the OS, so its implicitly going to work.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To me, licensing of gstreamer is still (after years of working with it) unclear: While gstreamer itself is LGPL and thus could - as far as I understand - be enabled by default without copyleft, the plug-ins that are used by gstreamer might be GPL (copyleft) or even 'worse'. I don't understand, if and how the license of dynamically loaded plugins influence the license chain "gstreamer->ni-media->application".