Re: [FFmpeg-devel] [PATCH 2/2] lavfi/vf_vpp_qsv: fix the time_base for outlink

2021-06-09 Thread Xiang, Haihao
On Wed, 2021-06-09 at 16:03 +, Rogozhkin, Dmitry V wrote: > On Wed, 2021-06-09 at 12:18 +0800, Haihao Xiang wrote: > > Since commit 89ffcd1, the pts on output pad is in the time base of > > the > > input link, not the time base of the output link when EOF is reached, > > so > > a filter after

Re: [FFmpeg-devel] [PATCH 2/2] lavfi/vf_vpp_qsv: fix the time_base for outlink

2021-06-09 Thread Rogozhkin, Dmitry V
On Wed, 2021-06-09 at 12:18 +0800, Haihao Xiang wrote: > Since commit 89ffcd1, the pts on output pad is in the time base of > the > input link, not the time base of the output link when EOF is reached, > so > a filter after vpp_qsv might output some unexpected frames. In order > to > avoid this

[FFmpeg-devel] [PATCH 2/2] lavfi/vf_vpp_qsv: fix the time_base for outlink

2021-06-08 Thread Haihao Xiang
Since commit 89ffcd1, the pts on output pad is in the time base of the input link, not the time base of the output link when EOF is reached, so a filter after vpp_qsv might output some unexpected frames. In order to avoid this issue, use the same time base for input and ouput links The issue can