Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-31 Thread Vittorio Giovara
On Thu, Mar 30, 2017 at 9:52 PM, James Almer wrote: > On 3/30/2017 3:37 PM, Vittorio Giovara wrote: >> On Thu, Mar 30, 2017 at 4:16 PM, James Almer wrote: >>> On 3/30/2017 5:54 AM, Vittorio Giovara wrote: On Wed, Mar 29, 2017 at 8:01 PM, James Almer

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread James Almer
On 3/30/2017 3:37 PM, Vittorio Giovara wrote: > On Thu, Mar 30, 2017 at 4:16 PM, James Almer wrote: >> On 3/30/2017 5:54 AM, Vittorio Giovara wrote: >>> On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: A new field is added to AVSphericalMapping for

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread Vittorio Giovara
On Thu, Mar 30, 2017 at 4:16 PM, James Almer wrote: > On 3/30/2017 5:54 AM, Vittorio Giovara wrote: >> On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: >>> A new field is added to AVSphericalMapping for this purpose, >>> and is used by both

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread James Almer
On 3/30/2017 11:41 AM, Aaron Colwell wrote: > On Thu, Mar 30, 2017 at 7:17 AM James Almer wrote: > >> On 3/30/2017 5:54 AM, Vittorio Giovara wrote: >>> On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: A new field is added to AVSphericalMapping for

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread Aaron Colwell
On Thu, Mar 30, 2017 at 7:17 AM James Almer wrote: > On 3/30/2017 5:54 AM, Vittorio Giovara wrote: > > On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: > >> A new field is added to AVSphericalMapping for this purpose, > >> and is used by both

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread James Almer
On 3/30/2017 5:54 AM, Vittorio Giovara wrote: > On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: >> A new field is added to AVSphericalMapping for this purpose, >> and is used by both Equirectangular and Cubemap projections. >> This is a replacement for duplicate projection

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread Michael Niedermayer
On Wed, Mar 29, 2017 at 03:01:24PM -0300, James Almer wrote: > A new field is added to AVSphericalMapping for this purpose, > and is used by both Equirectangular and Cubemap projections. > This is a replacement for duplicate projection enums like > AV_SPHERICAL_EQUIRECTANGULAR_TILE, which are

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread Vittorio Giovara
On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: > A new field is added to AVSphericalMapping for this purpose, > and is used by both Equirectangular and Cubemap projections. > This is a replacement for duplicate projection enums like > AV_SPHERICAL_EQUIRECTANGULAR_TILE,

[FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-29 Thread James Almer
A new field is added to AVSphericalMapping for this purpose, and is used by both Equirectangular and Cubemap projections. This is a replacement for duplicate projection enums like AV_SPHERICAL_EQUIRECTANGULAR_TILE, which are therefore removed. Signed-off-by: James Almer ---