mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-17 23:17:41 +08:00
avformat: add a Tile Grid stream group type
This will be used to support tiled image formats like HEIF. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@ -99,6 +99,11 @@ void ff_free_stream_group(AVStreamGroup **pstg)
|
||||
av_iamf_mix_presentation_free(&stg->params.iamf_mix_presentation);
|
||||
break;
|
||||
}
|
||||
case AV_STREAM_GROUP_PARAMS_TILE_GRID:
|
||||
av_opt_free(stg->params.tile_grid);
|
||||
av_freep(&stg->params.tile_grid->offsets);
|
||||
av_freep(&stg->params.tile_grid);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user