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
331a33d7
Commit
331a33d7
authored
Feb 08, 2016
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nut: Add PAL8 support
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
43a69655
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
7 deletions
+10
-7
raw.c
libavcodec/raw.c
+1
-0
nut.c
libavformat/nut.c
+2
-0
filter-pixfmts-copy
tests/ref/fate/filter-pixfmts-copy
+1
-1
filter-pixfmts-crop
tests/ref/fate/filter-pixfmts-crop
+1
-1
filter-pixfmts-field
tests/ref/fate/filter-pixfmts-field
+1
-1
filter-pixfmts-hflip
tests/ref/fate/filter-pixfmts-hflip
+1
-1
filter-pixfmts-null
tests/ref/fate/filter-pixfmts-null
+1
-1
filter-pixfmts-scale
tests/ref/fate/filter-pixfmts-scale
+1
-1
filter-pixfmts-vflip
tests/ref/fate/filter-pixfmts-vflip
+1
-1
No files found.
libavcodec/raw.c
View file @
331a33d7
...
@@ -154,6 +154,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
...
@@ -154,6 +154,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
{
AV_PIX_FMT_YUVA422P
,
MKTAG
(
'Y'
,
'4'
,
10
,
8
)
},
{
AV_PIX_FMT_YUVA422P
,
MKTAG
(
'Y'
,
'4'
,
10
,
8
)
},
{
AV_PIX_FMT_YUVA444P
,
MKTAG
(
'Y'
,
'4'
,
0
,
8
)
},
{
AV_PIX_FMT_YUVA444P
,
MKTAG
(
'Y'
,
'4'
,
0
,
8
)
},
{
AV_PIX_FMT_YA8
,
MKTAG
(
'Y'
,
'2'
,
0
,
8
)
},
{
AV_PIX_FMT_YA8
,
MKTAG
(
'Y'
,
'2'
,
0
,
8
)
},
{
AV_PIX_FMT_PAL8
,
MKTAG
(
'P'
,
'A'
,
'L'
,
8
)
},
{
AV_PIX_FMT_YUVA420P9LE
,
MKTAG
(
'Y'
,
'4'
,
11
,
9
)
},
{
AV_PIX_FMT_YUVA420P9LE
,
MKTAG
(
'Y'
,
'4'
,
11
,
9
)
},
{
AV_PIX_FMT_YUVA420P9BE
,
MKTAG
(
9
,
11
,
'4'
,
'Y'
)
},
{
AV_PIX_FMT_YUVA420P9BE
,
MKTAG
(
9
,
11
,
'4'
,
'Y'
)
},
...
...
libavformat/nut.c
View file @
331a33d7
...
@@ -168,6 +168,8 @@ const AVCodecTag ff_nut_video_tags[] = {
...
@@ -168,6 +168,8 @@ const AVCodecTag ff_nut_video_tags[] = {
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'X'
,
'Y'
,
'Z'
,
36
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'X'
,
'Y'
,
'Z'
,
36
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
36
,
'Z'
,
'Y'
,
'X'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
36
,
'Z'
,
'Y'
,
'X'
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
'P'
,
'A'
,
'L'
,
8
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
0xBA
,
'B'
,
'G'
,
8
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
0xBA
,
'B'
,
'G'
,
8
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
0xBA
,
'B'
,
'G'
,
16
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
0xBA
,
'B'
,
'G'
,
16
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
16
,
'G'
,
'B'
,
0xBA
)
},
{
AV_CODEC_ID_RAWVIDEO
,
MKTAG
(
16
,
'G'
,
'B'
,
0xBA
)
},
...
...
tests/ref/fate/filter-pixfmts-copy
View file @
331a33d7
...
@@ -35,7 +35,7 @@ monob a6869bab4f6e64fe13dcab13b41775b3
...
@@ -35,7 +35,7 @@ monob a6869bab4f6e64fe13dcab13b41775b3
monow 0404328f1838a6503371478a559ca20d
monow 0404328f1838a6503371478a559ca20d
nv12 8e24feb2c544dc26a20047a71e4c27aa
nv12 8e24feb2c544dc26a20047a71e4c27aa
nv21 335d85c9af6110f26ae9e187a82ed2cf
nv21 335d85c9af6110f26ae9e187a82ed2cf
pal8
d9a58fa1964ba9a3b902797b0b1af0ab
pal8
ff5929f5b42075793b2c34cb441bede5
rgb0 0de71e5a1f97f81fb51397a0435bfa72
rgb0 0de71e5a1f97f81fb51397a0435bfa72
rgb24 f4438057d046e6d98ade4e45294b21be
rgb24 f4438057d046e6d98ade4e45294b21be
rgb444be 115e5259b91f4a416546b09570347633
rgb444be 115e5259b91f4a416546b09570347633
...
...
tests/ref/fate/filter-pixfmts-crop
View file @
331a33d7
...
@@ -33,7 +33,7 @@ gray16be 38f599da990224de86e3dc7a543121a9
...
@@ -33,7 +33,7 @@ gray16be 38f599da990224de86e3dc7a543121a9
gray16le 9ff7c866bd98def4e6c91542c1c45f80
gray16le 9ff7c866bd98def4e6c91542c1c45f80
nv12 92cda427f794374731ec0321ee00caac
nv12 92cda427f794374731ec0321ee00caac
nv21 1bcfc197f4fb95de85ba58182d8d2f69
nv21 1bcfc197f4fb95de85ba58182d8d2f69
pal8
c89abc9660914b2e6c2e6f8c29e86503
pal8
1f2cdc8e718f95c875dbc1034a688bfb
rgb0 736646b70dd9a0be22b8da8041e35035
rgb0 736646b70dd9a0be22b8da8041e35035
rgb24 c5fbbf816bb2000f4d2914e335698ef5
rgb24 c5fbbf816bb2000f4d2914e335698ef5
rgb444be 44a33306889f7fa1a71ec831b860fd0a
rgb444be 44a33306889f7fa1a71ec831b860fd0a
...
...
tests/ref/fate/filter-pixfmts-field
View file @
331a33d7
...
@@ -35,7 +35,7 @@ monob 599b938a6207de81bd96c902c2511676
...
@@ -35,7 +35,7 @@ monob 599b938a6207de81bd96c902c2511676
monow 8486b94cd7c498b0effd33cb7e8e63df
monow 8486b94cd7c498b0effd33cb7e8e63df
nv12 16f7a46708ef25ebd0b72e47920cc11e
nv12 16f7a46708ef25ebd0b72e47920cc11e
nv21 7294574037cc7f9373ef5695d8ebe809
nv21 7294574037cc7f9373ef5695d8ebe809
pal8
379b8c80f4422a353ad286f7120f2fb6
pal8
0658c18dcd8d052d59dfbe23f5b368d9
rgb0 ca3fa6e865b91b3511c7f2bf62830059
rgb0 ca3fa6e865b91b3511c7f2bf62830059
rgb24 25ab271e26a5785be169578d99da5dd0
rgb24 25ab271e26a5785be169578d99da5dd0
rgb444be a05fabc91e485ec02461be900cd72ef3
rgb444be a05fabc91e485ec02461be900cd72ef3
...
...
tests/ref/fate/filter-pixfmts-hflip
View file @
331a33d7
...
@@ -33,7 +33,7 @@ gray16be cf7294d9aa23e1b838692ec01ade587b
...
@@ -33,7 +33,7 @@ gray16be cf7294d9aa23e1b838692ec01ade587b
gray16le d91ce41e304419bcf32ac792f01bd64f
gray16le d91ce41e304419bcf32ac792f01bd64f
nv12 801e58f1be5fd0b5bc4bf007c604b0b4
nv12 801e58f1be5fd0b5bc4bf007c604b0b4
nv21 9f10dfff8963dc327d3395af21f0554f
nv21 9f10dfff8963dc327d3395af21f0554f
pal8
cfe90d91bea5172babd97c3828270ea5
pal8
5b7c77d99817b4f52339742a47de7797
rgb0 0092452f37d73da20193265ace0b7d57
rgb0 0092452f37d73da20193265ace0b7d57
rgb24 21571104e6091a689feabb7867e513dd
rgb24 21571104e6091a689feabb7867e513dd
rgb444be 38d6d0e9aa15ce95f3fffcde8437632d
rgb444be 38d6d0e9aa15ce95f3fffcde8437632d
...
...
tests/ref/fate/filter-pixfmts-null
View file @
331a33d7
...
@@ -35,7 +35,7 @@ monob a6869bab4f6e64fe13dcab13b41775b3
...
@@ -35,7 +35,7 @@ monob a6869bab4f6e64fe13dcab13b41775b3
monow 0404328f1838a6503371478a559ca20d
monow 0404328f1838a6503371478a559ca20d
nv12 8e24feb2c544dc26a20047a71e4c27aa
nv12 8e24feb2c544dc26a20047a71e4c27aa
nv21 335d85c9af6110f26ae9e187a82ed2cf
nv21 335d85c9af6110f26ae9e187a82ed2cf
pal8
d9a58fa1964ba9a3b902797b0b1af0ab
pal8
ff5929f5b42075793b2c34cb441bede5
rgb0 0de71e5a1f97f81fb51397a0435bfa72
rgb0 0de71e5a1f97f81fb51397a0435bfa72
rgb24 f4438057d046e6d98ade4e45294b21be
rgb24 f4438057d046e6d98ade4e45294b21be
rgb444be 115e5259b91f4a416546b09570347633
rgb444be 115e5259b91f4a416546b09570347633
...
...
tests/ref/fate/filter-pixfmts-scale
View file @
331a33d7
...
@@ -35,7 +35,7 @@ monob 337d236f59b891b16dd17c5267cf874b
...
@@ -35,7 +35,7 @@ monob 337d236f59b891b16dd17c5267cf874b
monow 3cb791057cf735930f97fe67e5125c45
monow 3cb791057cf735930f97fe67e5125c45
nv12 b118d24a3653fe66e5d9e079033aef79
nv12 b118d24a3653fe66e5d9e079033aef79
nv21 c74bb1c10dbbdee8a1f682b194486c4d
nv21 c74bb1c10dbbdee8a1f682b194486c4d
pal8 2
8a5374b56a7d3e37f95ddb8469f14dd
pal8 2
9e10892009b2cfe431815ec3052ed3b
rgb0 fbd27e98154efb7535826afed41e9bb0
rgb0 fbd27e98154efb7535826afed41e9bb0
rgb24 e022e741451e81f2ecce1c7240b93e87
rgb24 e022e741451e81f2ecce1c7240b93e87
rgb444be db52b9ecdf98479b693e3f4bd9e77bac
rgb444be db52b9ecdf98479b693e3f4bd9e77bac
...
...
tests/ref/fate/filter-pixfmts-vflip
View file @
331a33d7
...
@@ -35,7 +35,7 @@ monob f51f07ba50f4398233106f0e81494170
...
@@ -35,7 +35,7 @@ monob f51f07ba50f4398233106f0e81494170
monow ee414089983b5be0f76b9d962757d900
monow ee414089983b5be0f76b9d962757d900
nv12 261ebe585ae2aa4e70d39a10c1679294
nv12 261ebe585ae2aa4e70d39a10c1679294
nv21 2909feacd27bebb080c8e0fa41795269
nv21 2909feacd27bebb080c8e0fa41795269
pal8
e81c55915557563b46627b0911764578
pal8
450b0155d0f2d5628bf95a442db5f817
rgb0 56a7ea69541bcd27bef6a5615784722b
rgb0 56a7ea69541bcd27bef6a5615784722b
rgb24 195e6dae1c3a488b9d3ceb7560d25d85
rgb24 195e6dae1c3a488b9d3ceb7560d25d85
rgb444be d30742559618f871ef5543f602e35d04
rgb444be d30742559618f871ef5543f602e35d04
...
...
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