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
bd6240e7
Commit
bd6240e7
authored
Oct 23, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/sendcmd: move buf init() variable to internal scope where it is used
parent
c7065f1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
f_sendcmd.c
libavfilter/f_sendcmd.c
+1
-2
No files found.
libavfilter/f_sendcmd.c
View file @
bd6240e7
...
...
@@ -374,7 +374,6 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
{
SendCmdContext
*
sendcmd
=
ctx
->
priv
;
int
ret
,
i
,
j
;
char
*
buf
;
sendcmd
->
class
=
&
sendcmd_class
;
av_opt_set_defaults
(
sendcmd
);
...
...
@@ -389,7 +388,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
}
if
(
sendcmd
->
commands_filename
)
{
uint8_t
*
file_buf
;
uint8_t
*
file_buf
,
*
buf
;
size_t
file_bufsize
;
ret
=
av_file_map
(
sendcmd
->
commands_filename
,
&
file_buf
,
&
file_bufsize
,
0
,
ctx
);
...
...
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