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
c18fdc86
Commit
c18fdc86
authored
Apr 08, 2016
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/shorten: remove useless if condition and comment, reindent
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
a4790e18
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
23 deletions
+21
-23
shorten.c
libavcodec/shorten.c
+21
-23
No files found.
libavcodec/shorten.c
View file @
c18fdc86
...
@@ -445,7 +445,6 @@ static int shorten_decode_frame(AVCodecContext *avctx, void *data,
...
@@ -445,7 +445,6 @@ static int shorten_decode_frame(AVCodecContext *avctx, void *data,
}
}
/* append current packet data to bitstream buffer */
/* append current packet data to bitstream buffer */
if
(
1
&&
s
->
max_framesize
)
{
//FIXME truncated
buf_size
=
FFMIN
(
buf_size
,
s
->
max_framesize
-
s
->
bitstream_size
);
buf_size
=
FFMIN
(
buf_size
,
s
->
max_framesize
-
s
->
bitstream_size
);
input_buf_size
=
buf_size
;
input_buf_size
=
buf_size
;
...
@@ -468,7 +467,6 @@ static int shorten_decode_frame(AVCodecContext *avctx, void *data,
...
@@ -468,7 +467,6 @@ static int shorten_decode_frame(AVCodecContext *avctx, void *data,
*
got_frame_ptr
=
0
;
*
got_frame_ptr
=
0
;
return
input_buf_size
;
return
input_buf_size
;
}
}
}
/* init and position bitstream reader */
/* init and position bitstream reader */
if
((
ret
=
init_get_bits8
(
&
s
->
gb
,
buf
,
buf_size
))
<
0
)
if
((
ret
=
init_get_bits8
(
&
s
->
gb
,
buf
,
buf_size
))
<
0
)
return
ret
;
return
ret
;
...
...
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