mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi/sendcmd: move buf init() variable to internal scope where it is used
This commit is contained in:
parent
c7065f1f89
commit
bd6240e7e9
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user