From: Marton Balint <cus@passwd.hu> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH] fftools/ffprobe: report avio errors Date: Mon, 20 Jun 2022 23:44:27 +0200 (CEST) Message-ID: <31ce27b1-fabd-eec9-24b5-7336c67c31b2@passwd.hu> (raw) In-Reply-To: <20220613210455.31216-1-cus@passwd.hu> On Mon, 13 Jun 2022, Marton Balint wrote: > Signed-off-by: Marton Balint <cus@passwd.hu> > --- > fftools/ffprobe.c | 12 ++++++++---- > 1 file changed, 8 insertions(+), 4 deletions(-) Will apply. Regards, Marton > > diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c > index 4e2fdbaec8..5020ba484c 100644 > --- a/fftools/ffprobe.c > +++ b/fftools/ffprobe.c > @@ -545,12 +545,13 @@ static const AVClass writer_class = { > .child_next = writer_child_next, > }; > > -static void writer_close(WriterContext **wctx) > +static int writer_close(WriterContext **wctx) > { > int i; > + int ret = 0; > > if (!*wctx) > - return; > + return -1; > > if ((*wctx)->writer->uninit) > (*wctx)->writer->uninit(*wctx); > @@ -562,9 +563,10 @@ static void writer_close(WriterContext **wctx) > av_opt_free(*wctx); > if ((*wctx)->avio) { > avio_flush((*wctx)->avio); > - avio_close((*wctx)->avio); > + ret = avio_close((*wctx)->avio); > } > av_freep(wctx); > + return ret; > } > > static void bprint_bytes(AVBPrint *bp, const uint8_t *ubuf, size_t ubuf_size) > @@ -4145,7 +4147,9 @@ int main(int argc, char **argv) > } > > writer_print_section_footer(wctx); > - writer_close(&wctx); > + ret = writer_close(&wctx); > + if (ret < 0) > + av_log(NULL, AV_LOG_ERROR, "Writing output failed: %s\n", av_err2str(ret)); > } > > end: > -- > 2.34.1 > > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". > _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
prev parent reply other threads:[~2022-06-20 21:44 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-06-13 21:04 Marton Balint 2022-06-20 21:44 ` Marton Balint [this message]
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=31ce27b1-fabd-eec9-24b5-7336c67c31b2@passwd.hu \ --to=cus@passwd.hu \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git