[Libav-user] Can't read packets after seeking

Gabriele Greco gabriele.greco at wyscout.com
Tue May 14 12:50:39 EEST 2019


>
>
>
>         AVPacket packet;
>
>
In the code that do not works packet is not initialized (this may cause
av_read_frame failure) and you do not unref it when you do not need it
anymore (this may cause a leak but should not be the cause of your problem)

>
>             int64_t packetPts = packet.pts == AV_NOPTS_VALUE ? packet.dts
> : packet.pts;
>
>             qDebug() << "packet Pts " << packetPts << " flags " <<
> packet.flags;
>
>             if (packetPts >= targetPts)
>             {
>

the pts you have here is in this timebase:
pFormatCtx->streams[videoStream]->time_base  , while you are comparing it
with an AV_TIME_BASE_Q timebase.

>
>             err = avcodec_receive_frame(pCodecCtx, pFrame);
>
>

You cannot assume that a single avcodec_receive_frame is enough to get a
viewable frame.

--
Bye,
 Gabry

-- 


Le informazioni contenute nella presente comunicazione e i relativi 
allegati possono essere riservate e sono, comunque, destinate 
esclusivamente alle persone o alla Società sopraindicati e non sono da 
considerarsi comunicazioni personali, quindi eventuali risposte potranno 
essere conosciute da persone appartenenti all’azienda. La diffusione, 
distribuzione e/o copiatura del documento trasmesso da parte di qualsiasi 
soggetto diverso dal destinatario è proibita ai sensi dell’art. 616 c.p. I 
dati forniti verranno trattati ai sensi dell'art. 13 del Regolamento UE 
2016/679 (normativa sulla privacy). Se ha ricevuto questo messaggio per 
errore Ti preghiamo di distruggerlo e di informarci immediatamente 
contattandoci mandando una mail a privacy at wyscout.com 
<mailto:privacy at wyscout.com>. Copia integrale dell’informativa potrà essere 
visionata presso le nostre sedi. 

Any information herein included (even 
any attachments) shall be considered confidential and/or privileged 
material and meant to be only for the abovementioned persons and/or 
Company, therefore such communication is intended to be for the addressee 
only. Such information is not personal, that is why this e-mail and any 
replies may be known exclusively by people belonging to the company. It is 
expressively not allowed communicate, disclose and/or copy any 
documentation transmitted by a person other than the recipient, according 
to the Italian Criminal Code, Section 616 and the Regulation EU 2016/679. 
Your provided data are processed in accordance with Regulation EU 2016/679 
(Data Protection Law), Section 13. A full copy of the relevant information 
notice is available at the company’s registered office upon request. If you 
received this in error, please destroy it and inform us immediately by 
sending an e-mail to the following e-mail address privacy at wyscout.com 
<mailto:privacy at wyscout.com>. A full copy of the relevant information 
notice is available at the company’s registered office upon request.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://ffmpeg.org/pipermail/libav-user/attachments/20190514/63667e80/attachment.html>


More information about the Libav-user mailing list