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
91e209d7
Commit
91e209d7
authored
Aug 17, 2011
by
Kostya Shishkov
Committed by
Diego Biurrun
Aug 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RV3/4 parser: remove unused variable 'off'
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
c6c6c1aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
rv34_parser.c
libavcodec/rv34_parser.c
+0
-2
No files found.
libavcodec/rv34_parser.c
View file @
91e209d7
...
...
@@ -43,7 +43,6 @@ static int rv34_parse(AVCodecParserContext *s,
const
uint8_t
*
buf
,
int
buf_size
)
{
RV34ParseContext
*
pc
=
s
->
priv_data
;
int
off
;
int
type
,
pts
,
hdr
;
if
(
buf_size
<
13
+
*
buf
*
8
)
{
...
...
@@ -52,7 +51,6 @@ static int rv34_parse(AVCodecParserContext *s,
return
buf_size
;
}
off
=
AV_RL32
(
buf
+
5
);
hdr
=
AV_RB32
(
buf
+
9
+
*
buf
*
8
);
if
(
avctx
->
codec_id
==
CODEC_ID_RV30
)
{
type
=
(
hdr
>>
27
)
&
3
;
...
...
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