Re: [FFmpeg-devel] [PATCH v3 3/4] avformat/imf: Demuxer implementation

2021-11-22 Thread Pierre-Anthony Lemieux
On Mon, Nov 22, 2021 at 12:37 PM Paul B Mahol wrote: > > > > On Mon, Nov 22, 2021 at 5:35 PM Pierre-Anthony Lemieux > wrote: >> >> Hi Paul, >> >> Thanks for the review. >> >> Are you saying that, in the event that any memory allocation fails >> within the demuxer, the demuxer is responsible for

Re: [FFmpeg-devel] [PATCH v3 3/4] avformat/imf: Demuxer implementation

2021-11-22 Thread Paul B Mahol
On Mon, Nov 22, 2021 at 5:35 PM Pierre-Anthony Lemieux wrote: > Hi Paul, > > Thanks for the review. > > Are you saying that, in the event that any memory allocation fails > within the demuxer, the demuxer is responsible for cleaning-up already > previously allocated memory so that other parts of

Re: [FFmpeg-devel] [PATCH v3 3/4] avformat/imf: Demuxer implementation

2021-11-22 Thread Pierre-Anthony Lemieux
Hi Paul, Thanks for the review. Are you saying that, in the event that any memory allocation fails within the demuxer, the demuxer is responsible for cleaning-up already previously allocated memory so that other parts of the pipeline can continue operating? In other words, ffmpeg is not expected

Re: [FFmpeg-devel] [PATCH v3 3/4] avformat/imf: Demuxer implementation

2021-11-22 Thread Paul B Mahol
The realloc calls still leaks on error. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v3 3/4] avformat/imf: Demuxer implementation

2021-11-06 Thread pal
From: Pierre-Anthony Lemieux Signed-off-by: Pierre-Anthony Lemieux --- Notes: Implements the IMF demuxer. libavformat/imfdec.c | 773 +++ 1 file changed, 773 insertions(+) create mode 100644 libavformat/imfdec.c diff --git a/libavformat/imfdec.c