Re: [FFmpeg-devel] [PATCH 30/36] fftools/ffmpeg_dec: deobfuscate subtitle decoding

2023-05-18 Thread Anton Khirnov
Quoting Michael Niedermayer (2023-05-17 22:15:37) > On Wed, May 17, 2023 at 12:20:23PM +0200, Anton Khirnov wrote: > > It is currently handled in the same loop as audio and video, but this > > obscures the actual flow, because only one iteration is ever performed > > for subtitles. > > > > Also,

Re: [FFmpeg-devel] [PATCH 30/36] fftools/ffmpeg_dec: deobfuscate subtitle decoding

2023-05-17 Thread Michael Niedermayer
On Wed, May 17, 2023 at 12:20:23PM +0200, Anton Khirnov wrote: > It is currently handled in the same loop as audio and video, but this > obscures the actual flow, because only one iteration is ever performed > for subtitles. > > Also, avoid a pointless packet reference. > --- >

[FFmpeg-devel] [PATCH 30/36] fftools/ffmpeg_dec: deobfuscate subtitle decoding

2023-05-17 Thread Anton Khirnov
It is currently handled in the same loop as audio and video, but this obscures the actual flow, because only one iteration is ever performed for subtitles. Also, avoid a pointless packet reference. --- fftools/ffmpeg_dec.c | 34 ++ 1 file changed, 18