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
5e0087d9
Verified
Commit
5e0087d9
authored
Nov 29, 2018
by
James Almer
Browse files
common: make 0 the default for Dav1dDataProps.duration
parent
6d87752b
Pipeline
#3131
passed with stages
in 7 minutes and 52 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
include/dav1d/common.h
View file @
5e0087d9
...
...
@@ -53,7 +53,7 @@
*/
typedef
struct
Dav1dDataProps
{
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
duration
;
///< container duration of input data,
0
if unknown (default)
int64_t
offset
;
///< stream offset of input data, -1 if unknown (default)
size_t
size
;
///< packet size, default Dav1dData.sz
}
Dav1dDataProps
;
...
...
src/data.c
View file @
5e0087d9
...
...
@@ -65,7 +65,8 @@ int dav1d_data_wrap(Dav1dData *const buf, const uint8_t *const ptr, const size_t
buf
->
data
=
ptr
;
buf
->
sz
=
buf
->
m
.
size
=
sz
;
buf
->
m
.
timestamp
=
INT64_MIN
;
buf
->
m
.
duration
=
buf
->
m
.
offset
=
-
1
;
buf
->
m
.
duration
=
0
;
buf
->
m
.
offset
=
-
1
;
return
0
;
}
...
...
src/picture.c
View file @
5e0087d9
...
...
@@ -118,7 +118,8 @@ static int picture_alloc_with_edges(Dav1dPicture *const p,
p
->
p
.
w
=
w
;
p
->
p
.
h
=
h
;
p
->
m
.
timestamp
=
INT64_MIN
;
p
->
m
.
duration
=
p
->
m
.
offset
=
-
1
;
p
->
m
.
duration
=
0
;
p
->
m
.
offset
=
-
1
;
p
->
p
.
layout
=
layout
;
p
->
p
.
bpc
=
bpc
;
int
res
=
p_allocator
->
alloc_picture_callback
(
p
,
p_allocator
->
cookie
);
...
...
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