Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
dav1d
Commits
6d87752b
Verified
Commit
6d87752b
authored
Nov 29, 2018
by
James Almer
Browse files
common: make it clear that the default values in Dav1dDataProps mean unknown
parent
e4ee4532
Pipeline
#3111
passed with stages
in 7 minutes and 49 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
include/dav1d/common.h
View file @
6d87752b
...
...
@@ -52,9 +52,9 @@
* used internally.
*/
typedef
struct
Dav1dDataProps
{
int64_t
timestamp
;
///< container timestamp of input data,
default
INT64_MIN
int64_t
duration
;
///< container duration of input data, default
-1
int64_t
offset
;
///< stream offset of input data, default
-1
int64_t
timestamp
;
///< container timestamp of input data, INT64_MIN
if unknown (default)
int64_t
duration
;
///< container duration of input data,
-1 if unknown (
default
)
int64_t
offset
;
///< stream offset of input data,
-1 if unknown (
default
)
size_t
size
;
///< packet size, default Dav1dData.sz
}
Dav1dDataProps
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment