This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new ca1b3c79a4 avformat: don't use deprecated .lcevc field
ca1b3c79a4 is described below

commit ca1b3c79a4254b217f4391aa410719a2a9fd0ad5
Author:     Kacper Michajłow <[email protected]>
AuthorDate: Thu Jun 4 18:32:42 2026 +0200
Commit:     James Almer <[email protected]>
CommitDate: Thu Jun 4 17:03:05 2026 +0000

    avformat: don't use deprecated .lcevc field
    
    It's the same as `.layered_video` now.
    
    Signed-off-by: Kacper Michajłow <[email protected]>
---
 libavformat/avformat.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/libavformat/avformat.c b/libavformat/avformat.c
index 3067be0867..dbd4792cd2 100644
--- a/libavformat/avformat.c
+++ b/libavformat/avformat.c
@@ -102,14 +102,11 @@ void ff_free_stream_group(AVStreamGroup **pstg)
                                  &stg->params.tile_grid->nb_coded_side_data);
         av_freep(&stg->params.tile_grid);
         break;
-    case AV_STREAM_GROUP_PARAMS_LCEVC:
-        av_opt_free(stg->params.lcevc);
-        av_freep(&stg->params.lcevc);
-        break;
     case AV_STREAM_GROUP_PARAMS_TREF:
         av_opt_free(stg->params.tref);
         av_freep(&stg->params.tref);
         break;
+    case AV_STREAM_GROUP_PARAMS_LCEVC:
     case AV_STREAM_GROUP_PARAMS_DOLBY_VISION:
         av_opt_free(stg->params.layered_video);
         av_freep(&stg->params.layered_video);

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to