mirror of https://git.ffmpeg.org/ffmpeg.git
lavd: Drop unneeded av_init_packet()s
The input packet is already unref'd by the calling function.
This commit is contained in:
parent
390b95b88b
commit
0b1bd1b205
|
@ -861,7 +861,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||
#endif
|
||||
int res;
|
||||
|
||||
av_init_packet(pkt);
|
||||
if ((res = mmap_read_frame(s1, pkt)) < 0) {
|
||||
return res;
|
||||
}
|
||||
|
|
|
@ -511,7 +511,6 @@ static int x11grab_read_packet(AVFormatContext *s1, AVPacket *pkt)
|
|||
nanosleep(&ts, NULL);
|
||||
}
|
||||
|
||||
av_init_packet(pkt);
|
||||
pkt->data = image->data;
|
||||
pkt->size = s->frame_size;
|
||||
pkt->pts = curtime;
|
||||
|
|
Loading…
Reference in New Issue