aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/vvc/inter.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-04-04 04:14:58 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-04-04 16:45:00 +0200
commitdb063212c8dde0d6082856935e2b2275230bc365 (patch)
tree69d3fa02629b16fd8150b04b6266b4b86a0e9087 /libavcodec/vvc/inter.h
parent486a2b964ba4e496ecd821e189d495ad06585abe (diff)
downloadffmpeg-db063212c8dde0d6082856935e2b2275230bc365.tar.gz
avcodec/vvc: Rename vvc_?foo->foo
A namespace is unnecessary here given that all these files are already in the vvc subfolder. Reviewed-by: Nuo Mi <nuomi2021@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/vvc/inter.h')
-rw-r--r--libavcodec/vvc/inter.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/libavcodec/vvc/inter.h b/libavcodec/vvc/inter.h
new file mode 100644
index 0000000000..50f2dbb66b
--- /dev/null
+++ b/libavcodec/vvc/inter.h
@@ -0,0 +1,42 @@
+/*
+ * VVC inter prediction
+ *
+ * Copyright (C) 2023 Nuo Mi
+ *
+ * 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 AVCODEC_VVC_INTER_H
+#define AVCODEC_VVC_INTER_H
+
+#include "ctu.h"
+
+/**
+ * Loop entire CTU to predict all inter coding blocks
+ * @param lc local context for CTU
+ * @param rs raster order for the CTU
+ * @return AVERROR
+ */
+int ff_vvc_predict_inter(VVCLocalContext *lc, int rs);
+
+/**
+ * CIIP(Combined Inter-Intra Prediction) for a coding block
+ * @param lc local context for CTU
+ */
+void ff_vvc_predict_ciip(VVCLocalContext *lc);
+
+#endif // AVCODEC_VVC_INTER_H