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
a0ae4b7d
Commit
a0ae4b7d
authored
Dec 07, 2019
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove redundant ;
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
67d4940a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
mpegvideo_parser.c
libavcodec/mpegvideo_parser.c
+1
-1
af_axcorrelate.c
libavfilter/af_axcorrelate.c
+2
-2
vf_drawbox.c
libavfilter/vf_drawbox.c
+1
-1
dashdec.c
libavformat/dashdec.c
+1
-1
hlsenc.c
libavformat/hlsenc.c
+1
-1
No files found.
libavcodec/mpegvideo_parser.c
View file @
a0ae4b7d
...
...
@@ -154,7 +154,7 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s,
break
;
}
}
the_end:
;
the_end:
if
(
set_dim_ret
<
0
)
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set dimensions
\n
"
);
...
...
libavfilter/af_axcorrelate.c
View file @
a0ae4b7d
...
...
@@ -238,11 +238,11 @@ static int activate(AVFilterContext *ctx)
ret
=
av_audio_fifo_peek
(
s
->
fifo
[
0
],
(
void
**
)
s
->
cache
[
0
]
->
extended_data
,
available
);
if
(
ret
<
0
)
return
ret
;
;
return
ret
;
ret
=
av_audio_fifo_peek
(
s
->
fifo
[
1
],
(
void
**
)
s
->
cache
[
1
]
->
extended_data
,
available
);
if
(
ret
<
0
)
return
ret
;
;
return
ret
;
out
=
ff_get_audio_buffer
(
ctx
->
outputs
[
0
],
out_samples
);
if
(
!
out
)
...
...
libavfilter/vf_drawbox.c
View file @
a0ae4b7d
...
...
@@ -292,7 +292,7 @@ static int process_command(AVFilterContext *ctx, const char *cmd, const char *ar
ret
=
init
(
ctx
);
if
(
ret
<
0
)
goto
end
;
ret
=
config_input
(
inlink
);
;
ret
=
config_input
(
inlink
);
end:
if
(
ret
<
0
)
{
s
->
x
=
old_x
;
...
...
libavformat/dashdec.c
View file @
a0ae4b7d
...
...
@@ -1934,7 +1934,7 @@ static int reopen_demux_for_component(AVFormatContext *s, struct representation
goto
fail
;
pls
->
ctx
->
flags
=
AVFMT_FLAG_CUSTOM_IO
;
pls
->
ctx
->
probesize
=
s
->
probesize
>
0
?
s
->
probesize
:
1024
*
4
;
;
pls
->
ctx
->
probesize
=
s
->
probesize
>
0
?
s
->
probesize
:
1024
*
4
;
pls
->
ctx
->
max_analyze_duration
=
s
->
max_analyze_duration
>
0
?
s
->
max_analyze_duration
:
4
*
AV_TIME_BASE
;
ret
=
av_probe_input_buffer
(
&
pls
->
pb
,
&
in_fmt
,
""
,
NULL
,
0
,
0
);
if
(
ret
<
0
)
{
...
...
libavformat/hlsenc.c
View file @
a0ae4b7d
...
...
@@ -475,7 +475,7 @@ static int flush_dynbuf(VariantStream *vs, int *range_length)
static
void
reflush_dynbuf
(
VariantStream
*
vs
,
int
*
range_length
)
{
// re-open buffer
avio_write
(
vs
->
out
,
vs
->
temp_buffer
,
*
range_length
);
;
avio_write
(
vs
->
out
,
vs
->
temp_buffer
,
*
range_length
);
}
#if HAVE_DOS_PATHS
...
...
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