Re: [FFmpeg-devel] [PATCH] avformat/3dostr: Return directly after having read packet

2020-08-01 Thread Andreas Rheinhardt
Paul B Mahol: > On 7/27/20, Andreas Rheinhardt wrote: >> Paul B Mahol: >>> Make sure this does not break demuxing/decoding. >>> >> >> This patch is designed to not change the packets output by the demuxer >> or the demuxer's return value at all. I have tested this with a small >> sample created in

Re: [FFmpeg-devel] [PATCH] avformat/3dostr: Return directly after having read packet

2020-07-27 Thread Paul B Mahol
On 7/27/20, Andreas Rheinhardt wrote: > Paul B Mahol: >> Make sure this does not break demuxing/decoding. >> > > This patch is designed to not change the packets output by the demuxer > or the demuxer's return value at all. I have tested this with a small > sample created in a hex editor, but only

Re: [FFmpeg-devel] [PATCH] avformat/3dostr: Return directly after having read packet

2020-07-27 Thread Andreas Rheinhardt
Paul B Mahol: > Make sure this does not break demuxing/decoding. > This patch is designed to not change the packets output by the demuxer or the demuxer's return value at all. I have tested this with a small sample created in a hex editor, but only demuxing (as the content of the packet was garba

Re: [FFmpeg-devel] [PATCH] avformat/3dostr: Return directly after having read packet

2020-07-26 Thread Paul B Mahol
Make sure this does not break demuxing/decoding. On 7/27/20, Andreas Rheinhardt wrote: > Avoids an avio_skip(s->pb, 0). > > Signed-off-by: Andreas Rheinhardt > --- > libavformat/3dostr.c | 13 - > 1 file changed, 4 insertions(+), 9 deletions(-) > > diff --git a/libavformat/3dostr.c

[FFmpeg-devel] [PATCH] avformat/3dostr: Return directly after having read packet

2020-07-26 Thread Andreas Rheinhardt
Avoids an avio_skip(s->pb, 0). Signed-off-by: Andreas Rheinhardt --- libavformat/3dostr.c | 13 - 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/libavformat/3dostr.c b/libavformat/3dostr.c index 6c49f7589c..3ec3c4393e 100644 --- a/libavformat/3dostr.c +++ b/libavformat