summaryrefslogtreecommitdiff
path: root/libavutil/spherical.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/spherical.h')
-rw-r--r--libavutil/spherical.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavutil/spherical.h b/libavutil/spherical.h
index 51ef22421e..cef759cf27 100644
--- a/libavutil/spherical.h
+++ b/libavutil/spherical.h
@@ -1,20 +1,20 @@
/*
* Copyright (c) 2016 Vittorio Giovara <vittorio.giovara@gmail.com>
*
- * This file is part of Libav.
+ * This file is part of FFmpeg.
*
- * Libav is free software; you can redistribute it and/or
+ * 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.
*
- * Libav is distributed in the hope that it will be useful,
+ * 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 Libav; if not, write to the Free Software
+ * License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
@@ -202,7 +202,7 @@ AVSphericalMapping *av_spherical_alloc(size_t *size);
* @param right Pixels from the right edge.
* @param bottom Pixels from the bottom edge.
*/
-void av_spherical_tile_bounds(AVSphericalMapping *map,
+void av_spherical_tile_bounds(const AVSphericalMapping *map,
size_t width, size_t height,
size_t *left, size_t *top,
size_t *right, size_t *bottom);
@@ -221,7 +221,7 @@ const char *av_spherical_projection_name(enum AVSphericalProjection projection);
*
* @param name The input string.
*
- * @return The AVSphericalProjection value, or AVERROR if not found.
+ * @return The AVSphericalProjection value, or -1 if not found.
*/
int av_spherical_from_name(const char *name);
/**