Re: [libav-devel] [PATCH 1/3] avutil/spherical: add functions to retrieve and request projection names

2017-04-07 Thread Luca Barbato
On 04/04/2017 22:24, James Almer wrote: > +const char *av_spherical_projection_name(enum AVSphericalProjection > projection) > +{ > +if ((unsigned)projection >= FF_ARRAY_ELEMS(spherical_projection_names)) > +return "unknown"; > + > +return spherical_projection_names[projection]; >

Re: [libav-devel] [PATCH 1/3] avutil/spherical: add functions to retrieve and request projection names

2017-04-06 Thread Vittorio Giovara
On Tue, Apr 4, 2017 at 10:24 PM, James Almer wrote: > Signed-off-by: James Almer > --- > doc/APIchanges| 4 > libavutil/spherical.c | 28 > libavutil/spherical.h | 18 ++ > libavutil/version.h |

[libav-devel] [PATCH 1/3] avutil/spherical: add functions to retrieve and request projection names

2017-04-04 Thread James Almer
Signed-off-by: James Almer --- doc/APIchanges| 4 libavutil/spherical.c | 28 libavutil/spherical.h | 18 ++ libavutil/version.h | 2 +- 4 files changed, 51 insertions(+), 1 deletion(-) diff --git a/doc/APIchanges