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
6e4b41f8
Commit
6e4b41f8
authored
Feb 14, 2009
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: Change '8*8' to '64'.
Originally committed as revision 17285 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
cb18fb62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
mpegvideo_xvmc.c
libavcodec/mpegvideo_xvmc.c
+1
-1
No files found.
libavcodec/mpegvideo_xvmc.c
View file @
6e4b41f8
...
@@ -254,7 +254,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
...
@@ -254,7 +254,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
if
(
s
->
flags
&
CODEC_FLAG_GRAY
)
{
if
(
s
->
flags
&
CODEC_FLAG_GRAY
)
{
if
(
s
->
mb_intra
)
{
// intra frames are always full chroma blocks
if
(
s
->
mb_intra
)
{
// intra frames are always full chroma blocks
for
(
i
=
4
;
i
<
blocks_per_mb
;
i
++
)
{
for
(
i
=
4
;
i
<
blocks_per_mb
;
i
++
)
{
memset
(
s
->
pblocks
[
i
],
0
,
sizeof
(
short
)
*
8
*
8
);
// so we need to clear them
memset
(
s
->
pblocks
[
i
],
0
,
sizeof
(
short
)
*
64
);
// so we need to clear them
if
(
!
render
->
unsigned_intra
)
if
(
!
render
->
unsigned_intra
)
s
->
pblocks
[
i
][
0
]
=
1
<<
10
;
s
->
pblocks
[
i
][
0
]
=
1
<<
10
;
}
}
...
...
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