Lines Matching refs:spherical
35 #include "libavutil/spherical.h"
373 const AVSphericalMapping *spherical = (const AVSphericalMapping *)sd->data;
376 if (sd->size < sizeof(*spherical)) {
381 av_log(ctx, AV_LOG_INFO, "%s ", av_spherical_projection_name(spherical->projection));
383 yaw = ((double)spherical->yaw) / (1 << 16);
384 pitch = ((double)spherical->pitch) / (1 << 16);
385 roll = ((double)spherical->roll) / (1 << 16);
388 if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) {
390 av_spherical_tile_bounds(spherical, par->width, par->height,
395 } else if (spherical->projection == AV_SPHERICAL_CUBEMAP) {
396 av_log(ctx, AV_LOG_INFO, "[pad %"PRIu32"] ", spherical->padding);
484 av_log(ctx, AV_LOG_INFO, "spherical: ");