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
d04aceb7
Commit
d04aceb7
authored
Jan 05, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/nutdec: remove unused variable
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b1ad9312
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
nutdec.c
libavformat/nutdec.c
+2
-2
No files found.
libavformat/nutdec.c
View file @
d04aceb7
...
...
@@ -792,11 +792,11 @@ static int read_sm_data(AVFormatContext *s, AVIOContext *bc, AVPacket *pkt, int
for
(
i
=
0
;
i
<
count
;
i
++
)
{
uint8_t
name
[
256
],
str_value
[
256
],
type_str
[
256
];
int
value
,
type
;
int
value
;
if
(
avio_tell
(
bc
)
>=
maxpos
)
return
AVERROR_INVALIDDATA
;
get_str
(
bc
,
name
,
sizeof
(
name
));
type
=
value
=
get_s
(
bc
);
value
=
get_s
(
bc
);
if
(
value
==
-
1
)
{
get_str
(
bc
,
str_value
,
sizeof
(
str_value
));
...
...
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