aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/cbs.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2025-03-19 20:59:49 -0300
committerJames Almer <jamrial@gmail.com>2025-03-25 20:59:18 -0300
commit08e334e462c6337478c164da84cd7be718d285b9 (patch)
tree3b9e54c12d860a070b4de59c7458b52374fe379e /libavformat/cbs.h
parent5631704d83aba75c2c8b836515dd608115aa194a (diff)
downloadffmpeg-08e334e462c6337478c164da84cd7be718d285b9.tar.gz
avformat/movenccenc: add support for CENC AV1 encryption
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/cbs.h')
-rw-r--r--libavformat/cbs.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/libavformat/cbs.h b/libavformat/cbs.h
new file mode 100644
index 0000000000..e4dc231001
--- /dev/null
+++ b/libavformat/cbs.h
@@ -0,0 +1,35 @@
+/*
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef AVFORMAT_CBS_H
+#define AVFORMAT_CBS_H
+
+#define CBS_PREFIX lavf_cbs
+#define CBS_WRITE 0
+#define CBS_TRACE 0
+#define CBS_H264 0
+#define CBS_H265 0
+#define CBS_H266 0
+#define CBS_JPEG 0
+#define CBS_MPEG2 0
+#define CBS_VP8 0
+#define CBS_VP9 0
+
+#include "libavcodec/cbs.h"
+
+#endif /* AVFORMAT_CBS_H */