]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/vf_alphamerge: add AVClass to private context
authorPaul B Mahol <onemda@gmail.com>
Sat, 8 Feb 2020 20:54:09 +0000 (21:54 +0100)
committerPaul B Mahol <onemda@gmail.com>
Sat, 8 Feb 2020 20:54:45 +0000 (21:54 +0100)
libavfilter/vf_alphamerge.c

index 72b93c780fb786161abd619ac62c015cfc845670..85b6d9b61a336c95a01a42a94658604880fd9b8d 100644 (file)
@@ -38,6 +38,8 @@
 enum { Y, U, V, A };
 
 typedef struct AlphaMergeContext {
+    const AVClass *class;
+
     int is_packed_rgb;
     uint8_t rgba_map[4];
     AVFrame *main_frame;