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
ffafa53d
Commit
ffafa53d
authored
Nov 27, 2018
by
Martin Vignali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/proresdec : add 12b decoding
based on patch by Kieran Kunhya ticket 7163
parent
6a583261
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
40 additions
and
15 deletions
+40
-15
proresdec2.c
libavcodec/proresdec2.c
+30
-5
prores.mak
tests/fate/prores.mak
+4
-4
prores-alpha
tests/ref/fate/prores-alpha
+2
-2
prores-alpha_skip
tests/ref/fate/prores-alpha_skip
+2
-2
prores-transparency
tests/ref/fate/prores-transparency
+1
-1
prores-transparency_skip
tests/ref/fate/prores-transparency_skip
+1
-1
No files found.
libavcodec/proresdec2.c
View file @
ffafa53d
...
...
@@ -155,15 +155,23 @@ static av_cold int decode_init(AVCodecContext *avctx)
break
;
case
MKTAG
(
'a'
,
'p'
,
'4'
,
'h'
):
avctx
->
profile
=
FF_PROFILE_PRORES_4444
;
avctx
->
bits_per_raw_sample
=
12
;
break
;
case
MKTAG
(
'a'
,
'p'
,
'4'
,
'x'
):
avctx
->
profile
=
FF_PROFILE_PRORES_XQ
;
avctx
->
bits_per_raw_sample
=
12
;
break
;
default:
avctx
->
profile
=
FF_PROFILE_UNKNOWN
;
av_log
(
avctx
,
AV_LOG_WARNING
,
"Unknown prores profile %d
\n
"
,
avctx
->
codec_tag
);
}
if
(
avctx
->
bits_per_raw_sample
==
10
)
{
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Auto bitdepth precision. Use 10b decoding based on codec tag"
);
}
else
{
/* 12b */
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Auto bitdepth precision. Use 12b decoding based on codec tag"
);
}
ff_blockdsp_init
(
&
ctx
->
bdsp
,
avctx
);
ret
=
ff_proresdsp_init
(
&
ctx
->
prodsp
,
avctx
);
if
(
ret
<
0
)
{
...
...
@@ -211,6 +219,7 @@ static int decode_frame_header(ProresContext *ctx, const uint8_t *buf,
width
=
AV_RB16
(
buf
+
8
);
height
=
AV_RB16
(
buf
+
10
);
if
(
width
!=
avctx
->
width
||
height
!=
avctx
->
height
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"picture resolution change: %dx%d -> %dx%d
\n
"
,
avctx
->
width
,
avctx
->
height
,
width
,
height
);
...
...
@@ -237,9 +246,17 @@ static int decode_frame_header(ProresContext *ctx, const uint8_t *buf,
}
if
(
ctx
->
alpha_info
)
{
avctx
->
pix_fmt
=
(
buf
[
12
]
&
0xC0
)
==
0xC0
?
AV_PIX_FMT_YUVA444P10
:
AV_PIX_FMT_YUVA422P10
;
if
(
avctx
->
bits_per_raw_sample
==
10
)
{
avctx
->
pix_fmt
=
(
buf
[
12
]
&
0xC0
)
==
0xC0
?
AV_PIX_FMT_YUVA444P10
:
AV_PIX_FMT_YUVA422P10
;
}
else
{
/* 12b */
avctx
->
pix_fmt
=
(
buf
[
12
]
&
0xC0
)
==
0xC0
?
AV_PIX_FMT_YUVA444P12
:
AV_PIX_FMT_YUVA422P12
;
}
}
else
{
avctx
->
pix_fmt
=
(
buf
[
12
]
&
0xC0
)
==
0xC0
?
AV_PIX_FMT_YUV444P10
:
AV_PIX_FMT_YUV422P10
;
if
(
avctx
->
bits_per_raw_sample
==
10
)
{
avctx
->
pix_fmt
=
(
buf
[
12
]
&
0xC0
)
==
0xC0
?
AV_PIX_FMT_YUV444P10
:
AV_PIX_FMT_YUV422P10
;
}
else
{
/* 12b */
avctx
->
pix_fmt
=
(
buf
[
12
]
&
0xC0
)
==
0xC0
?
AV_PIX_FMT_YUV444P12
:
AV_PIX_FMT_YUV422P12
;
}
}
avctx
->
color_primaries
=
buf
[
14
];
...
...
@@ -585,6 +602,7 @@ static void decode_slice_alpha(ProresContext *ctx,
}
block
=
blocks
;
for
(
i
=
0
;
i
<
16
;
i
++
)
{
memcpy
(
dst
,
block
,
16
*
blocks_per_slice
*
sizeof
(
*
dst
));
dst
+=
dst_stride
>>
1
;
...
...
@@ -606,6 +624,7 @@ static int decode_slice_thread(AVCodecContext *avctx, void *arg, int jobnr, int
LOCAL_ALIGNED_16
(
int16_t
,
qmat_chroma_scaled
,[
64
]);
int
mb_x_shift
;
int
ret
;
uint16_t
val_no_chroma
;
slice
->
ret
=
-
1
;
//av_log(avctx, AV_LOG_INFO, "slice %d mb width %d mb x %d y %d\n",
...
...
@@ -643,7 +662,8 @@ static int decode_slice_thread(AVCodecContext *avctx, void *arg, int jobnr, int
chroma_stride
=
pic
->
linesize
[
1
]
<<
1
;
}
if
(
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV444P10
||
avctx
->
pix_fmt
==
AV_PIX_FMT_YUVA444P10
)
{
if
(
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV444P10
||
avctx
->
pix_fmt
==
AV_PIX_FMT_YUVA444P10
||
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV444P12
||
avctx
->
pix_fmt
==
AV_PIX_FMT_YUVA444P12
)
{
mb_x_shift
=
5
;
log2_chroma_blocks_per_mb
=
2
;
}
else
{
...
...
@@ -684,10 +704,15 @@ static int decode_slice_thread(AVCodecContext *avctx, void *arg, int jobnr, int
else
{
size_t
mb_max_x
=
slice
->
mb_count
<<
(
mb_x_shift
-
1
);
size_t
i
,
j
;
if
(
avctx
->
bits_per_raw_sample
==
10
)
{
val_no_chroma
=
511
;
}
else
{
/* 12b */
val_no_chroma
=
511
*
4
;
}
for
(
i
=
0
;
i
<
16
;
++
i
)
for
(
j
=
0
;
j
<
mb_max_x
;
++
j
)
{
*
(
uint16_t
*
)(
dest_u
+
(
i
*
chroma_stride
)
+
(
j
<<
1
))
=
511
;
*
(
uint16_t
*
)(
dest_v
+
(
i
*
chroma_stride
)
+
(
j
<<
1
))
=
511
;
*
(
uint16_t
*
)(
dest_u
+
(
i
*
chroma_stride
)
+
(
j
<<
1
))
=
val_no_chroma
;
*
(
uint16_t
*
)(
dest_v
+
(
i
*
chroma_stride
)
+
(
j
<<
1
))
=
val_no_chroma
;
}
}
...
...
tests/fate/prores.mak
View file @
ffafa53d
...
...
@@ -15,10 +15,10 @@ fate-prores-422: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/pror
fate-prores-422_hq: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422_HQ.mov -pix_fmt yuv422p10le
fate-prores-422_lt: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422_LT.mov -pix_fmt yuv422p10le
fate-prores-422_proxy: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_422_Proxy.mov -pix_fmt yuv422p10le
fate-prores-alpha: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_with_Alpha.mov -pix_fmt yuva444p1
0
le
fate-prores-alpha_skip: CMD = framecrc -flags +bitexact -skip_alpha 1 -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_with_Alpha.mov -pix_fmt yuv444p1
0
le
fate-prores-transparency: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/prores4444_with_transparency.mov -pix_fmt yuva444p1
0
le
fate-prores-transparency_skip: CMD = framecrc -flags +bitexact -skip_alpha 1 -i $(TARGET_SAMPLES)/prores/prores4444_with_transparency.mov -pix_fmt yuv444p1
0
le
fate-prores-alpha: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_with_Alpha.mov -pix_fmt yuva444p1
2
le
fate-prores-alpha_skip: CMD = framecrc -flags +bitexact -skip_alpha 1 -i $(TARGET_SAMPLES)/prores/Sequence_1-Apple_ProRes_with_Alpha.mov -pix_fmt yuv444p1
2
le
fate-prores-transparency: CMD = framecrc -flags +bitexact -i $(TARGET_SAMPLES)/prores/prores4444_with_transparency.mov -pix_fmt yuva444p1
2
le
fate-prores-transparency_skip: CMD = framecrc -flags +bitexact -skip_alpha 1 -i $(TARGET_SAMPLES)/prores/prores4444_with_transparency.mov -pix_fmt yuv444p1
2
le
fate-prores-gray: CMD = framecrc -flags +bitexact -c:a aac_fixed -i $(TARGET_SAMPLES)/prores/gray.mov -pix_fmt yuv422p10le
#Test bsf prores-metadata
...
...
tests/ref/fate/prores-alpha
View file @
ffafa53d
...
...
@@ -3,5 +3,5 @@
#codec_id 0: rawvideo
#dimensions 0: 1920x1080
#sar 0: 0/1
0, 0, 0, 1, 16588800, 0x
8e4dac4
8
0, 1, 1, 1, 16588800, 0x
8e4dac4
8
0, 0, 0, 1, 16588800, 0x
b035f65
8
0, 1, 1, 1, 16588800, 0x
b035f65
8
tests/ref/fate/prores-alpha_skip
View file @
ffafa53d
...
...
@@ -3,5 +3,5 @@
#codec_id 0: rawvideo
#dimensions 0: 1920x1080
#sar 0: 0/1
0, 0, 0, 1, 12441600, 0x
f11685dd
0, 1, 1, 1, 12441600, 0x
f11685dd
0, 0, 0, 1, 12441600, 0x
65e009b8
0, 1, 1, 1, 12441600, 0x
65e009b8
tests/ref/fate/prores-transparency
View file @
ffafa53d
...
...
@@ -9,6 +9,6 @@
#sample_rate 1: 48000
#channel_layout 1: 3
#channel_layout_name 1: stereo
0, 0, 0, 1, 16588800, 0x
7163b01a
0, 0, 0, 1, 16588800, 0x
cfb3d806
1, 0, 0, 1024, 4096, 0x00000000
1, 1024, 1024, 896, 3584, 0x00000000
tests/ref/fate/prores-transparency_skip
View file @
ffafa53d
...
...
@@ -9,6 +9,6 @@
#sample_rate 1: 48000
#channel_layout 1: 3
#channel_layout_name 1: stereo
0, 0, 0, 1, 12441600, 0x
627d1548
0, 0, 0, 1, 12441600, 0x
74f53304
1, 0, 0, 1024, 4096, 0x00000000
1, 1024, 1024, 896, 3584, 0x00000000
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