Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
30872fa0
Commit
30872fa0
authored
Dec 29, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ivi_common: Fix use of uninitialized warnings
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
76e65a1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ivi_common.c
libavcodec/ivi_common.c
+2
-2
No files found.
libavcodec/ivi_common.c
View file @
30872fa0
...
@@ -395,10 +395,10 @@ static int ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile
...
@@ -395,10 +395,10 @@ static int ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile
AVCodecContext
*
avctx
)
AVCodecContext
*
avctx
)
{
{
int
mbn
,
blk
,
num_blocks
,
num_coeffs
,
blk_size
,
scan_pos
,
run
,
val
,
int
mbn
,
blk
,
num_blocks
,
num_coeffs
,
blk_size
,
scan_pos
,
run
,
val
,
pos
,
is_intra
,
mc_type
=
0
,
mv_x
,
mv_y
,
col_mask
;
pos
,
is_intra
,
mc_type
=
0
,
av_uninit
(
mv_x
),
av_uninit
(
mv_y
)
,
col_mask
;
uint8_t
col_flags
[
8
];
uint8_t
col_flags
[
8
];
int32_t
prev_dc
,
trvec
[
64
];
int32_t
prev_dc
,
trvec
[
64
];
uint32_t
cbp
,
sym
,
lo
,
hi
,
quant
,
buf_offs
,
q
;
uint32_t
cbp
,
av_uninit
(
sym
)
,
lo
,
hi
,
quant
,
buf_offs
,
q
;
IVIMbInfo
*
mb
;
IVIMbInfo
*
mb
;
RVMapDesc
*
rvmap
=
band
->
rv_map
;
RVMapDesc
*
rvmap
=
band
->
rv_map
;
void
(
*
mc_with_delta_func
)(
int16_t
*
buf
,
const
int16_t
*
ref_buf
,
uint32_t
pitch
,
int
mc_type
);
void
(
*
mc_with_delta_func
)(
int16_t
*
buf
,
const
int16_t
*
ref_buf
,
uint32_t
pitch
,
int
mc_type
);
...
...
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