Re: [FFmpeg-devel] [PATCH 2/3] avfilter/src_movie: Remove unnecessary secondary AVPacket

2020-09-10 Thread Andreas Rheinhardt
Nicolas George: > Andreas Rheinhardt (12020-09-10): >> The movie and amovie filters currently use two packets. One of the two, >> pkt0, is the owner of the returned packet; it is also the destination >> packet for av_read_frame(). The other one pkt is initially (i.e. after >> av_read_frame()) a cop

Re: [FFmpeg-devel] [PATCH 2/3] avfilter/src_movie: Remove unnecessary secondary AVPacket

2020-09-10 Thread Nicolas George
Andreas Rheinhardt (12020-09-10): > The movie and amovie filters currently use two packets. One of the two, > pkt0, is the owner of the returned packet; it is also the destination > packet for av_read_frame(). The other one pkt is initially (i.e. after > av_read_frame()) a copy of pkt0; copy means

[FFmpeg-devel] [PATCH 2/3] avfilter/src_movie: Remove unnecessary secondary AVPacket

2020-09-09 Thread Andreas Rheinhardt
The movie and amovie filters currently use two packets. One of the two, pkt0, is the owner of the returned packet; it is also the destination packet for av_read_frame(). The other one pkt is initially (i.e. after av_read_frame()) a copy of pkt0; copy means that the contents of both are absolutely t