Re: [libav-devel] [PATCH 2/4 v2] lavu: Add AVSphericalMapping type and frame side data

2016-11-23 Thread Anton Khirnov
Quoting Vittorio Giovara (2016-11-15 18:07:33) > 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 > --- > Changed yaw, pitch,

Re: [libav-devel] [PATCH 2/4 v2] lavu: Add AVSphericalMapping type and frame side data

2016-11-17 Thread Vittorio Giovara
On Tue, Nov 15, 2016 at 12:07 PM, Vittorio Giovara wrote: > +/** > + * @addtogroup lavu_video_spherical > + * A spherical video file contains surfaces that need to be mapped onto a > + * sphere. Depending on how the frame was converted, a different distortion > + *

[libav-devel] [PATCH 2/4 v2] lavu: Add AVSphericalMapping type and frame side data

2016-11-15 Thread Vittorio Giovara
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 --- Changed yaw, pitch, roll to be fixed point instead of double. Vittorio