Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
03ba3868
Commit
03ba3868
authored
Aug 15, 2019
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/libdav1d: allow setting frame size limit in pixels
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
e1039b09
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
configure
configure
+1
-1
libdav1d.c
libavcodec/libdav1d.c
+1
-0
No files found.
configure
View file @
03ba3868
...
...
@@ -6202,7 +6202,7 @@ enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
die
"ERROR: libcelt must be installed and version must be >= 0.11.0."
;
}
enabled libcaca
&&
require_pkg_config libcaca caca caca.h caca_create_canvas
enabled libcodec2
&&
require libcodec2 codec2/codec2.h codec2_create
-lcodec2
enabled libdav1d
&&
require_pkg_config libdav1d
"dav1d >= 0.
2.1
"
"dav1d/dav1d.h"
dav1d_version
enabled libdav1d
&&
require_pkg_config libdav1d
"dav1d >= 0.
4.0
"
"dav1d/dav1d.h"
dav1d_version
enabled libdavs2
&&
require_pkg_config libdavs2
"davs2 >= 1.6.0"
davs2.h davs2_decoder_open
enabled libdc1394
&&
require_pkg_config libdc1394 libdc1394-2 dc1394/dc1394.h dc1394_new
enabled libdrm
&&
require_pkg_config libdrm libdrm xf86drm.h drmGetVersion
...
...
libavcodec/libdav1d.c
View file @
03ba3868
...
...
@@ -130,6 +130,7 @@ static av_cold int libdav1d_init(AVCodecContext *c)
s
.
allocator
.
cookie
=
dav1d
;
s
.
allocator
.
alloc_picture_callback
=
libdav1d_picture_allocator
;
s
.
allocator
.
release_picture_callback
=
libdav1d_picture_release
;
s
.
frame_size_limit
=
c
->
max_pixels
;
s
.
apply_grain
=
dav1d
->
apply_grain
;
s
.
n_tile_threads
=
dav1d
->
tile_threads
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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