Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-20 Thread Luca Barbato
On 20/07/15 14:44, Vittorio Giovara wrote: > Since most of the code in Libav is referring to ITU, I would recommend > switching to UHD, that otoh does not differ between 2160 and 4320 . So > you could either use UHDTV1 and UHDTV2 (from SMPTE) or UHD and SHD > (ITU/NHK). Alternatively stick to ITU a

Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-20 Thread Vittorio Giovara
On Sun, Jul 19, 2015 at 12:12 PM, Kieran Kunhya wrote: >> +{ "uhd", 3840,2160 }, > > should be uhd1 and uhd2 imho. If you want map uhd to uhd1. These are the DVB/EBU names used for distribution, and they both refer to 3840x2160 (differing by colour space and subsampling). If you wanted t

Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-19 Thread Luca Barbato
On 19/07/15 13:12, Kieran Kunhya wrote: >> +{ "uhd", 3840,2160 }, > > should be uhd1 and uhd2 imho. If you want map uhd to uhd1. > good idea. I'll update that way and eventually push it. lu ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-19 Thread Kieran Kunhya
> +{ "uhd", 3840,2160 }, should be uhd1 and uhd2 imho. If you want map uhd to uhd1. Kieran ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

[libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-18 Thread Luca Barbato
Add DCI 2k and 4k and uhd. --- As Vittorio suggested, now with also the documentation updated doc/avconv.texi| 6 ++ libavutil/parseutils.c | 3 +++ 2 files changed, 9 insertions(+) diff --git a/doc/avconv.texi b/doc/avconv.texi index aea41d9..e557002 100644 --- a/doc/avconv.texi ++

Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-17 Thread Luca Barbato
On 18/07/15 00:00, Vittorio Giovara wrote: > On Fri, Jul 17, 2015 at 9:22 PM, Luca Barbato wrote: >> On 17/07/15 15:18, Vittorio Giovara wrote: >>> On Fri, Jul 17, 2015 at 2:27 AM, Luca Barbato wrote: On 17/07/15 01:44, Vittorio Giovara wrote: > > On Thu, Jul 16, 2015 at 11:33 PM, Lu

Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-17 Thread Vittorio Giovara
On Fri, Jul 17, 2015 at 9:22 PM, Luca Barbato wrote: > On 17/07/15 15:18, Vittorio Giovara wrote: >> On Fri, Jul 17, 2015 at 2:27 AM, Luca Barbato wrote: >>> On 17/07/15 01:44, Vittorio Giovara wrote: On Thu, Jul 16, 2015 at 11:33 PM, Luca Barbato wrote: > > Add DCI 4k and 2160

Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-17 Thread Luca Barbato
On 17/07/15 15:18, Vittorio Giovara wrote: > On Fri, Jul 17, 2015 at 2:27 AM, Luca Barbato wrote: >> On 17/07/15 01:44, Vittorio Giovara wrote: >>> >>> On Thu, Jul 16, 2015 at 11:33 PM, Luca Barbato wrote: Add DCI 4k and 2160p. --- Yes, I'm testing which encoders are able

Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-17 Thread Vittorio Giovara
On Fri, Jul 17, 2015 at 2:27 AM, Luca Barbato wrote: > On 17/07/15 01:44, Vittorio Giovara wrote: >> >> On Thu, Jul 16, 2015 at 11:33 PM, Luca Barbato wrote: >>> >>> Add DCI 4k and 2160p. >>> --- >>> >>> Yes, I'm testing which encoders are able to do something with 4k now =) >>> >>> libavutil/p

Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-16 Thread Luca Barbato
On 17/07/15 01:44, Vittorio Giovara wrote: On Thu, Jul 16, 2015 at 11:33 PM, Luca Barbato wrote: Add DCI 4k and 2160p. --- Yes, I'm testing which encoders are able to do something with 4k now =) libavutil/parseutils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/parseuti

Re: [libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-16 Thread Vittorio Giovara
On Thu, Jul 16, 2015 at 11:33 PM, Luca Barbato wrote: > Add DCI 4k and 2160p. > --- > > Yes, I'm testing which encoders are able to do something with 4k now =) > > libavutil/parseutils.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c > i

[libav-devel] [PATCH] parseutil: Add more resolution aliases

2015-07-16 Thread Luca Barbato
Add DCI 4k and 2160p. --- Yes, I'm testing which encoders are able to do something with 4k now =) libavutil/parseutils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c index be238f0..4cf4471 100644 --- a/libavutil/parseutils.c +++ b/libavuti