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
7231ccf4
Commit
7231ccf4
authored
Jan 18, 2010
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetic, get rid of &x[0]
Originally committed as revision 21309 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
2b3649f6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
h264.c
libavcodec/h264.c
+1
-1
h264_cabac.c
libavcodec/h264_cabac.c
+1
-1
No files found.
libavcodec/h264.c
View file @
7231ccf4
...
...
@@ -578,7 +578,7 @@ static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t
if
(
IS_16X16
(
mb_type
)){
mc_part
(
h
,
0
,
1
,
8
,
0
,
dest_y
,
dest_cb
,
dest_cr
,
0
,
0
,
qpix_put
[
0
],
chroma_put
[
0
],
qpix_avg
[
0
],
chroma_avg
[
0
],
&
weight_op
[
0
],
&
weight_avg
[
0
]
,
weight_op
,
weight_avg
,
IS_DIR
(
mb_type
,
0
,
0
),
IS_DIR
(
mb_type
,
0
,
1
));
}
else
if
(
IS_16X8
(
mb_type
)){
mc_part
(
h
,
0
,
0
,
4
,
8
,
dest_y
,
dest_cb
,
dest_cr
,
0
,
0
,
...
...
libavcodec/h264_cabac.c
View file @
7231ccf4
...
...
@@ -740,7 +740,7 @@ static int decode_cabac_intra_mb_type(H264Context *h, int ctx_base, int intra_sl
return
0
;
/* I4x4 */
state
+=
2
;
}
else
{
if
(
get_cabac_noinline
(
&
h
->
cabac
,
&
state
[
0
]
)
==
0
)
if
(
get_cabac_noinline
(
&
h
->
cabac
,
state
)
==
0
)
return
0
;
/* I4x4 */
}
...
...
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