Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-04-20 Thread James Zern
On Sat, Apr 18, 2015 at 1:06 PM, James Zern jz...@google.com wrote: On Thu, Apr 16, 2015 at 6:19 PM, Debargha Mukherjee debar...@google.com wrote: Resolutions inline... From d84e140ed83bdc3889720e4a6af330198176b839 Mon Sep 17 00:00:00 2001 From: Deb Mukherjee debar...@google.com Date: Wed,

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-04-18 Thread James Zern
On Thu, Apr 16, 2015 at 6:19 PM, Debargha Mukherjee debar...@google.com wrote: Resolutions inline... From d84e140ed83bdc3889720e4a6af330198176b839 Mon Sep 17 00:00:00 2001 From: Deb Mukherjee debar...@google.com Date: Wed, 25 Mar 2015 17:10:16 -0700 Subject: [PATCH] Support for VP9

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-04-07 Thread Michael Niedermayer
On Tue, Apr 07, 2015 at 02:30:34PM -0700, Debargha Mukherjee wrote: Resolutions inline. On Mon, Apr 6, 2015 at 3:21 PM, James Zern jz...@google.com wrote: On Fri, Apr 3, 2015 at 6:37 PM, Debargha Mukherjee debar...@google.com wrote: You can probably merge profile 1 like 2/3 to

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-04-03 Thread Debargha Mukherjee
On Thu, Apr 2, 2015 at 3:10 PM, James Zern jz...@google.com wrote: On Thu, Apr 2, 2015 at 12:19 PM, Debargha Mukherjee debar...@google.com wrote: [...] Updated patch to handle the checks better. +#if CONFIG_LIBVPX_VP9_ENCODER +static int set_pix_fmt(AVCodecContext *avctx,

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-04-01 Thread Debargha Mukherjee
On Tue, Mar 31, 2015 at 4:08 PM, James Zern jz...@google.com wrote: On Mon, Mar 30, 2015 at 10:43 AM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Debargha Mukherjee debargha at google.com writes: - if (avctx-profile != FF_PROFILE_UNKNOWN) - enccfg.g_profile = avctx-profile; +

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-04-01 Thread Debargha Mukherjee
Updated patch. On Wed, Apr 1, 2015 at 3:10 PM, Debargha Mukherjee debar...@google.com wrote: On Tue, Mar 31, 2015 at 4:16 PM, James Zern jz...@google.com wrote: On Mon, Mar 30, 2015 at 10:26 AM, Debargha Mukherjee debar...@google.com wrote: On Fri, Mar 27, 2015 at 8:07 PM, James Zern

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-03-30 Thread Carl Eugen Hoyos
Debargha Mukherjee debargha at google.com writes: - if (avctx-profile != FF_PROFILE_UNKNOWN) - enccfg.g_profile = avctx-profile; +if (avctx-profile != FF_PROFILE_UNKNOWN) { +enccfg.g_profile = avctx-profile; +} Please make this a separate patch, do not mix

[FFmpeg-devel] Patch for High color and High bit-depth support

2015-03-27 Thread Debargha Mukherjee
-- Debargha Mukherjee, Ph.D. Staff Software Engineer, Google, Inc. Email: debar...@google.com Phone: 408-234-5956 (cell) From ea4e6a0718563bc069d42e5604a9971ae71b3853 Mon Sep 17 00:00:00 2001 From: Deb Mukherjee debar...@google.com Date: Wed, 25 Mar 2015 17:10:16 -0700 Subject: [PATCH] Support

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-03-27 Thread James Zern
On Fri, Mar 27, 2015 at 6:58 PM, Debargha Mukherjee debar...@google.com wrote: [...] +#if CONFIG_LIBVPX_VP9_ENCODER defined(VPX_IMG_FMT_HIGHBITDEPTH) +static int set_pix_fmt(AVCodecContext *avctx, struct vpx_codec_enc_cfg *enccfg, + vpx_codec_flags_t *flags,