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
4628443c
Commit
4628443c
authored
Oct 02, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h263: Drop uninitialized variable use from log message
parent
1da2a207
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
h263dec.c
libavcodec/h263dec.c
+2
-2
No files found.
libavcodec/h263dec.c
View file @
4628443c
...
...
@@ -236,8 +236,8 @@ static int decode_slice(MpegEncContext *s)
s
->
mv_dir
=
MV_DIR_FORWARD
;
s
->
mv_type
=
MV_TYPE_16X16
;
ff_dlog
(
s
,
"%d %
d %
06X
\n
"
,
ret
,
get_bits_count
(
&
s
->
gb
),
show_bits
(
&
s
->
gb
,
24
));
ff_dlog
(
s
,
"%d %06X
\n
"
,
get_bits_count
(
&
s
->
gb
),
show_bits
(
&
s
->
gb
,
24
));
ret
=
s
->
decode_mb
(
s
,
s
->
block
);
if
(
s
->
pict_type
!=
AV_PICTURE_TYPE_B
)
...
...
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