[Libav-user] Reuse of format context after free and reallocate?

william keeling williamkeeling at hotmail.com
Wed Mar 3 18:50:40 EET 2021


I have not used "valgrind" I will need to look into that tool.  any tips on how to use it?

yes, I am free the all contexts before reallocation but I cannot find a way to for the FLVContext/Muxer to be freed/reinitialized thru the API.
I am doing the following:

avcodec_free_context() of all streams video and audio

avformat_free_context()

avio_close()

________________________________
From: Libav-user <libav-user-bounces at ffmpeg.org> on behalf of Paul B Mahol <onemda at gmail.com>
Sent: Wednesday, March 3, 2021 5:54 AM
To: This list is about using libavcodec, libavformat, libavutil, libavdevice and libavfilter. <libav-user at ffmpeg.org>
Subject: Re: [Libav-user] Reuse of format context after free and reallocate?



On Wed, Mar 3, 2021 at 5:22 AM william keeling <williamkeeling at hotmail.com<mailto:williamkeeling at hotmail.com>> wrote:
 I did some digging and found the error is coming from this code in flvenv.c line 921.

  if (pkt->dts < -flv->delay) {
        av_log(s, AV_LOG_WARNING,
               "Packets are not in the proper order with respect to DTS\n");
        return AVERROR(EINVAL);

flv is a pointer to  FLVContext from AVFormatContext->priv_data.

Looks like the avformat_write_header()/avformat_init_output uses the state of the muxer at the last run even if the AVFormatContext has been freed and reallocated.
So how do I get the FLVContext to be initlized as if a fresh run. Or how do I free the old FLVContext so when avformat_write_header() initlizes the priv_data it is fresh.
________________________________
From: Libav-user <libav-user-bounces at ffmpeg.org<mailto:libav-user-bounces at ffmpeg.org>> on behalf of william keeling <WilliamKeeling at hotmail.com<mailto:WilliamKeeling at hotmail.com>>
Sent: Monday, March 1, 2021 2:32 PM
To: libav-user at ffmpeg.org<mailto:libav-user at ffmpeg.org> <libav-user at ffmpeg.org<mailto:libav-user at ffmpeg.org>>
Subject: [Libav-user] Reuse of format context after free and reallocate?


I have a program the creates flash format stream and is work the first time thru but when I process the second stream, I get DTS/PTS non monotonically errors.

After each stream I free and reallocate all contexts:

avcodec_free_context() of all streams video and audio

avformat_free_context()

avio_close()



What am I missing so the format context can be reallocate and used?

Looks like to be real bug to me.




Thanks William

_______________________________________________
Libav-user mailing list
Libav-user at ffmpeg.org<mailto:Libav-user at ffmpeg.org>
https://ffmpeg.org/mailman/listinfo/libav-user

To unsubscribe, visit link above, or email
libav-user-request at ffmpeg.org<mailto:libav-user-request at ffmpeg.org> with subject "unsubscribe".
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://ffmpeg.org/pipermail/libav-user/attachments/20210303/fc5fa0ab/attachment.html>


More information about the Libav-user mailing list