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
6581e161
Commit
6581e161
authored
Jul 05, 2011
by
Jeff Downs
Committed by
Diego Biurrun
Aug 19, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: fix PCM intra-coded blocks in monochrome case
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
87cf70eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
12 deletions
+34
-12
h264.c
libavcodec/h264.c
+34
-12
No files found.
libavcodec/h264.c
View file @
6581e161
...
...
@@ -1824,15 +1824,30 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple, i
tmp_y
[
j
]
=
get_bits
(
&
gb
,
bit_depth
);
}
if
(
simple
||
!
CONFIG_GRAY
||
!
(
s
->
flags
&
CODEC_FLAG_GRAY
)){
for
(
i
=
0
;
i
<
8
;
i
++
)
{
uint16_t
*
tmp_cb
=
(
uint16_t
*
)(
dest_cb
+
i
*
uvlinesize
);
for
(
j
=
0
;
j
<
8
;
j
++
)
tmp_cb
[
j
]
=
get_bits
(
&
gb
,
bit_depth
);
}
for
(
i
=
0
;
i
<
8
;
i
++
)
{
uint16_t
*
tmp_cr
=
(
uint16_t
*
)(
dest_cr
+
i
*
uvlinesize
);
for
(
j
=
0
;
j
<
8
;
j
++
)
tmp_cr
[
j
]
=
get_bits
(
&
gb
,
bit_depth
);
if
(
!
h
->
sps
.
chroma_format_idc
)
{
for
(
i
=
0
;
i
<
8
;
i
++
)
{
uint16_t
*
tmp_cb
=
(
uint16_t
*
)(
dest_cb
+
i
*
uvlinesize
);
for
(
j
=
0
;
j
<
8
;
j
++
)
{
tmp_cb
[
j
]
=
1
<<
(
bit_depth
-
1
);
}
}
for
(
i
=
0
;
i
<
8
;
i
++
)
{
uint16_t
*
tmp_cr
=
(
uint16_t
*
)(
dest_cr
+
i
*
uvlinesize
);
for
(
j
=
0
;
j
<
8
;
j
++
)
{
tmp_cr
[
j
]
=
1
<<
(
bit_depth
-
1
);
}
}
}
else
{
for
(
i
=
0
;
i
<
8
;
i
++
)
{
uint16_t
*
tmp_cb
=
(
uint16_t
*
)(
dest_cb
+
i
*
uvlinesize
);
for
(
j
=
0
;
j
<
8
;
j
++
)
tmp_cb
[
j
]
=
get_bits
(
&
gb
,
bit_depth
);
}
for
(
i
=
0
;
i
<
8
;
i
++
)
{
uint16_t
*
tmp_cr
=
(
uint16_t
*
)(
dest_cr
+
i
*
uvlinesize
);
for
(
j
=
0
;
j
<
8
;
j
++
)
tmp_cr
[
j
]
=
get_bits
(
&
gb
,
bit_depth
);
}
}
}
}
else
{
...
...
@@ -1840,9 +1855,16 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple, i
memcpy
(
dest_y
+
i
*
linesize
,
h
->
mb
+
i
*
8
,
16
);
}
if
(
simple
||
!
CONFIG_GRAY
||
!
(
s
->
flags
&
CODEC_FLAG_GRAY
)){
for
(
i
=
0
;
i
<
8
;
i
++
)
{
memcpy
(
dest_cb
+
i
*
uvlinesize
,
h
->
mb
+
128
+
i
*
4
,
8
);
memcpy
(
dest_cr
+
i
*
uvlinesize
,
h
->
mb
+
160
+
i
*
4
,
8
);
if
(
!
h
->
sps
.
chroma_format_idc
)
{
for
(
i
=
0
;
i
<
8
;
i
++
)
{
memset
(
dest_cb
+
i
*
uvlinesize
,
128
,
8
);
memset
(
dest_cr
+
i
*
uvlinesize
,
128
,
8
);
}
}
else
{
for
(
i
=
0
;
i
<
8
;
i
++
)
{
memcpy
(
dest_cb
+
i
*
uvlinesize
,
h
->
mb
+
128
+
i
*
4
,
8
);
memcpy
(
dest_cr
+
i
*
uvlinesize
,
h
->
mb
+
160
+
i
*
4
,
8
);
}
}
}
}
...
...
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