-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Wrong pixelAspectRatio population in DASH #2614
Conversation
In DASH, the So to summarize:
|
Hum, I can change the name if you want. Do you want me to change PAR name too? |
Since the |
I have several live streams with the following:
720x576 is taken from a dvb-t source, the rest are converted qualities. If I understand you well ... really the problem is that the parsing in DASH is wrong? |
Actually, it looks like the So, with a So in this case, the "storage aspect ratio" would be I propose we expose the |
Ok, I’ll update the PR to change the dash parser. pixelAspectRatio should be populate with @sar |
I updated the PR, @TheModMaker can you review? |
All tests passed! |
The current implementation of pixelAspectRatio in DASH is wrong. `@par` in DASH is "picture aspect ratio" so the correct is populate this field with `@sar`. Backported to v2.5.x Change-Id: I5e492e17cee3895af43782b6799e09baa31cffcb
The current implementation of
pixelAspectRatio
in DASH is wrong.@par
in DASH is "display aspect ratio" so the correct is populate this field with@sar