summaryrefslogtreecommitdiff
path: root/libavutil/spherical.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-11-11 17:25:43 -0500
committerVittorio Giovara <vittorio.giovara@gmail.com>2016-12-07 14:39:04 -0500
commit8f58ecc344a92e63193c38e28c173be987954bbb (patch)
tree726e17f01ac162d303f21356a118db8e7568e08e /libavutil/spherical.c
parentc188f358aaee5800af5a5d699dd657cef3fb43a6 (diff)
lavu: Add AVSphericalMapping type and frame side data
While no decoder currently exports spherical information, this type represents a frame property that has to be passed through from container to frames. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavutil/spherical.c')
-rw-r--r--libavutil/spherical.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/libavutil/spherical.c b/libavutil/spherical.c
new file mode 100644
index 0000000000..816452cbd6
--- /dev/null
+++ b/libavutil/spherical.c
@@ -0,0 +1,34 @@
+/*
+ * Copyright (c) 2016 Vittorio Giovara <vittorio.giovara@gmail.com>
+ *
+ * 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
+ */
+
+#include "mem.h"
+#include "spherical.h"
+
+AVSphericalMapping *av_spherical_alloc(size_t *size)
+{
+ AVSphericalMapping *spherical = av_mallocz(sizeof(AVSphericalMapping));
+ if (!spherical)
+ return NULL;
+
+ if (size)
+ *size = sizeof(*spherical);
+
+ return spherical;
+}