Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-28 Thread Aman Gupta
On Wed, Sep 27, 2017 at 9:44 AM, Hendrik Leppkes wrote: > On Wed, Sep 27, 2017 at 6:37 PM, wm4 wrote: > > On Wed, 27 Sep 2017 09:17:36 -0700 > > Aman Gupta wrote: > > > >> On Wed, Sep 27, 2017 at 5:51 AM, wm4 wrote: > >> > >> > On Tue, 26 Sep 2017 18:08:10 -0700 > >> > Aman Gupta wrote: > >>

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-27 Thread Hendrik Leppkes
On Wed, Sep 27, 2017 at 6:37 PM, wm4 wrote: > On Wed, 27 Sep 2017 09:17:36 -0700 > Aman Gupta wrote: > >> On Wed, Sep 27, 2017 at 5:51 AM, wm4 wrote: >> >> > On Tue, 26 Sep 2017 18:08:10 -0700 >> > Aman Gupta wrote: >> > >> > > From: Aman Gupta >> > > >> > > --- >> > > configure

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-27 Thread James Almer
On 9/27/2017 1:37 PM, wm4 wrote: > On Wed, 27 Sep 2017 09:17:36 -0700 > Aman Gupta wrote: > >> On Wed, Sep 27, 2017 at 5:51 AM, wm4 wrote: >> >>> On Tue, 26 Sep 2017 18:08:10 -0700 >>> Aman Gupta wrote: >>> From: Aman Gupta --- configure| 2 +

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-27 Thread wm4
On Wed, 27 Sep 2017 09:17:36 -0700 Aman Gupta wrote: > On Wed, Sep 27, 2017 at 5:51 AM, wm4 wrote: > > > On Tue, 26 Sep 2017 18:08:10 -0700 > > Aman Gupta wrote: > > > > > From: Aman Gupta > > > > > > --- > > > configure| 2 + > > > libavcodec/allcodecs.c | 1

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-27 Thread Aman Gupta
On Wed, Sep 27, 2017 at 5:51 AM, wm4 wrote: > On Tue, 26 Sep 2017 18:08:10 -0700 > Aman Gupta wrote: > > > From: Aman Gupta > > > > --- > > configure| 2 + > > libavcodec/allcodecs.c | 1 + > > libavcodec/hevc_refs.c | 3 + > > libavcodec/hevcdec.c

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-27 Thread wm4
On Tue, 26 Sep 2017 18:08:10 -0700 Aman Gupta wrote: > From: Aman Gupta > > --- > configure| 2 + > libavcodec/allcodecs.c | 1 + > libavcodec/hevc_refs.c | 3 + > libavcodec/hevcdec.c | 12 ++- > libavcodec/vda_vt_internal.h | 1 + > libavcodec

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-27 Thread wm4
On Tue, 26 Sep 2017 18:08:10 -0700 Aman Gupta wrote: > From: Aman Gupta > > --- > configure| 2 + > libavcodec/allcodecs.c | 1 + > libavcodec/hevc_refs.c | 3 + > libavcodec/hevcdec.c | 12 ++- > libavcodec/vda_vt_internal.h | 1 + > libavcodec

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-27 Thread wm4
On Tue, 26 Sep 2017 19:49:34 -0700 Aman Gupta wrote: > On Tue, Sep 26, 2017 at 7:20 PM, James Almer wrote: > > > On 9/26/2017 10:08 PM, Aman Gupta wrote: > > > From: Aman Gupta > > > > > > --- > > > configure| 2 + > > > libavcodec/allcodecs.c | 1 + > > > liba

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-26 Thread James Almer
On 9/26/2017 11:49 PM, Aman Gupta wrote: > On Tue, Sep 26, 2017 at 7:20 PM, James Almer wrote: >> On 9/26/2017 10:08 PM, Aman Gupta wrote: >>> +for (i = 0; i < MAX_PPS_COUNT; i++) { >>> +if (h->ps.pps_list[i]) { >> >> I think this hints that there's no guarantee that the entire buffer

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-26 Thread Aman Gupta
On Tue, Sep 26, 2017 at 7:20 PM, James Almer wrote: > On 9/26/2017 10:08 PM, Aman Gupta wrote: > > From: Aman Gupta > > > > --- > > configure| 2 + > > libavcodec/allcodecs.c | 1 + > > libavcodec/hevc_refs.c | 3 + > > libavcodec/hevcdec.c | 12 ++

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-26 Thread James Almer
On 9/26/2017 10:08 PM, Aman Gupta wrote: > From: Aman Gupta > > --- > configure| 2 + > libavcodec/allcodecs.c | 1 + > libavcodec/hevc_refs.c | 3 + > libavcodec/hevcdec.c | 12 ++- > libavcodec/vda_vt_internal.h | 1 + > libavcodec/videotoolbox.

[FFmpeg-devel] [PATCH 2/2] avcodec/videotoolbox: add hevc support

2017-09-26 Thread Aman Gupta
From: Aman Gupta --- configure| 2 + libavcodec/allcodecs.c | 1 + libavcodec/hevc_refs.c | 3 + libavcodec/hevcdec.c | 12 ++- libavcodec/vda_vt_internal.h | 1 + libavcodec/videotoolbox.c| 203 +++ 6 f