Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
5c7e7ac6
Commit
5c7e7ac6
authored
Jul 18, 2017
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/codec_desc: Mark some uncompressed codecs as lossless.
Fixes ticket #6526.
parent
e6b4fb95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
codec_desc.c
libavcodec/codec_desc.c
+9
-9
No files found.
libavcodec/codec_desc.c
View file @
5c7e7ac6
...
...
@@ -1115,7 +1115,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"y41p"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Uncompressed YUV 4:1:1 12-bit"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_ESCAPE130
,
...
...
@@ -1129,56 +1129,56 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"avrp"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Avid 1:1 10-bit RGB Packer"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_012V
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"012v"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Uncompressed 4:2:2 10-bit"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_AVUI
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"avui"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Avid Meridien Uncompressed"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_AYUV
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"ayuv"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Uncompressed packed MS 4:4:4:4"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_TARGA_Y216
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"targa_y216"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Pinnacle TARGA CineWave YUV16"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_V308
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"v308"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Uncompressed packed 4:4:4"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_V408
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"v408"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Uncompressed packed QT 4:4:4:4"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_YUV4
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"yuv4"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Uncompressed packed 4:2:0"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_AVRN
,
...
...
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