diff options
author | James Almer <jamrial@gmail.com> | 2025-03-19 20:59:49 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2025-03-25 20:59:18 -0300 |
commit | 08e334e462c6337478c164da84cd7be718d285b9 (patch) | |
tree | 3b9e54c12d860a070b4de59c7458b52374fe379e /libavformat/cbs.h | |
parent | 5631704d83aba75c2c8b836515dd608115aa194a (diff) | |
download | ffmpeg-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.h | 35 |
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 */ |