mirror of
https://github.com/ente-io/ente.git
synced 2025-08-07 23:18:10 +00:00
[mob][photos] Add todo comment
This commit is contained in:
parent
e1713851b3
commit
f69214461d
@ -167,7 +167,11 @@ class FFProbeProps {
|
||||
if (key == FFProbeKeys.rFrameRate) {
|
||||
result.fps = _formatFPS(stream[key]);
|
||||
parsedData[key] = result.fps;
|
||||
} else if (key == FFProbeKeys.codedWidth) {
|
||||
}
|
||||
//TODO: Use `height` and `width` instead of `codedHeight` and `codedWidth`
|
||||
//for better accuracy. `height' and `width` will give the video's "visual"
|
||||
//height and width.
|
||||
else if (key == FFProbeKeys.codedWidth) {
|
||||
final width = stream[key];
|
||||
if (width != null && width != 0) {
|
||||
result._width = width.toString();
|
||||
|
Loading…
x
Reference in New Issue
Block a user