Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the multi-thread HWAccel decode error

2019-06-10 Thread Xiang, Haihao
On Thu, 2019-06-06 at 15:21 +0800, Wang, Shaofei wrote: > > -Original Message- > > From: Xiang, Haihao > > Sent: Thursday, June 6, 2019 11:57 AM > > To: ffmpeg-devel@ffmpeg.org; Wang, Shaofei > > Subject: Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fi

Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the multi-thread HWAccel decode error

2019-06-06 Thread Wang, Shaofei
> -Original Message- > From: Xiang, Haihao > Sent: Thursday, June 6, 2019 11:57 AM > To: ffmpeg-devel@ffmpeg.org; Wang, Shaofei > Subject: Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the > multi-thread HWAccel decode error > > On Tue, 2019-06-04 at 15

Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the multi-thread HWAccel decode error

2019-06-05 Thread Xiang, Haihao
On Tue, 2019-06-04 at 15:21 +0800, Wang, Shaofei wrote: > > -Original Message- > > From: Xiang, Haihao > > Sent: Tuesday, May 28, 2019 12:23 PM > > To: ffmpeg-devel@ffmpeg.org > > Cc: Wang, Shaofei > > Subject: Re: [FFmpeg-devel] [PATCH v2] libavco

Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the multi-thread HWAccel decode error

2019-06-04 Thread Wang, Shaofei
> -Original Message- > From: Xiang, Haihao > Sent: Tuesday, May 28, 2019 12:23 PM > To: ffmpeg-devel@ffmpeg.org > Cc: Wang, Shaofei > Subject: Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the > multi-thread HWAccel decode error > > On Thu, 2019-03-28 a

Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the multi-thread HWAccel decode error

2019-05-27 Thread Xiang, Haihao
On Thu, 2019-03-28 at 13:28 -0400, Shaofei Wang wrote: > Fix the issue: https://github.com/intel/media-driver/issues/317 > > the root cause is update_dimensions will be called multple times > when decoder thread number is not only 1, but update_dimensions > call get_pixel_format in each decode

[FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the multi-thread HWAccel decode error

2019-03-27 Thread Shaofei Wang
Fix the issue: https://github.com/intel/media-driver/issues/317 the root cause is update_dimensions will be called multple times when decoder thread number is not only 1, but update_dimensions call get_pixel_format in each decode thread will trigger the hwaccel_uninit/hwaccel_init more than once.

Re: [FFmpeg-devel] [PATCH V2] libavcodec/vp8dec: fix the multi-thread HWAccel decode error

2018-11-12 Thread myp...@gmail.com
Ping? On Wed, Oct 17, 2018 at 8:01 PM Jun Zhao wrote: > > Fix the issue: https://github.com/intel/media-driver/issues/317 > > the root cause is update_dimensions call get_pixel_format will > trigger the hwaccel_uninit/hwaccel_init , in current context, > there are 3 situations in the

[FFmpeg-devel] [PATCH V2] libavcodec/vp8dec: fix the multi-thread HWAccel decode error

2018-10-17 Thread Jun Zhao
Fix the issue: https://github.com/intel/media-driver/issues/317 the root cause is update_dimensions call get_pixel_format will trigger the hwaccel_uninit/hwaccel_init , in current context, there are 3 situations in the update_dimensions(): 1. First time calling. No matter single thread or