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
4912b634
Commit
4912b634
authored
Aug 28, 2014
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x265: Use the encoder defaults
Reset the settings as it is done for x264.
parent
eda7571e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
libx265.c
libavcodec/libx265.c
+6
-0
No files found.
libavcodec/libx265.c
View file @
4912b634
...
...
@@ -299,6 +299,11 @@ static const AVClass class = {
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
const
AVCodecDefault
x265_defaults
[]
=
{
{
"b"
,
"0"
},
{
NULL
},
};
AVCodec
ff_libx265_encoder
=
{
.
name
=
"libx265"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"libx265 H.265 / HEVC"
),
...
...
@@ -310,5 +315,6 @@ AVCodec ff_libx265_encoder = {
.
close
=
libx265_encode_close
,
.
priv_data_size
=
sizeof
(
libx265Context
),
.
priv_class
=
&
class
,
.
defaults
=
x265_defaults
,
.
capabilities
=
CODEC_CAP_DELAY
|
CODEC_CAP_AUTO_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