mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
fftools/ffmpeg_opt: fix variable shadowing
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
84a40b1b23
commit
fd61e101b5
@ -87,8 +87,6 @@ int recast_media = 0;
|
||||
|
||||
static void uninit_options(OptionsContext *o)
|
||||
{
|
||||
int i;
|
||||
|
||||
/* all OPT_SPEC and OPT_TYPE_STRING can be freed in generic way */
|
||||
for (const OptionDef *po = options; po->name; po++) {
|
||||
void *dst;
|
||||
@ -112,11 +110,11 @@ static void uninit_options(OptionsContext *o)
|
||||
av_freep(dst);
|
||||
}
|
||||
|
||||
for (i = 0; i < o->nb_stream_maps; i++)
|
||||
for (int i = 0; i < o->nb_stream_maps; i++)
|
||||
av_freep(&o->stream_maps[i].linklabel);
|
||||
av_freep(&o->stream_maps);
|
||||
|
||||
for (i = 0; i < o->nb_attachments; i++)
|
||||
for (int i = 0; i < o->nb_attachments; i++)
|
||||
av_freep(&o->attachments[i]);
|
||||
av_freep(&o->attachments);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user