summaryrefslogtreecommitdiff
path: root/libavdevice/lavfi.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-08-30 07:32:48 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-09-01 09:50:05 +0200
commit901251d59bd287954f334bc153a0d71853debb92 (patch)
tree3ad8cc97e58d8412a1c622343f6d0495123153e3 /libavdevice/lavfi.c
parentebd485db926889b5686cab440a6f514d6831209f (diff)
avdevice/lavfi: Don't set pkt->size to the value it already has
av_new_packet() already sets the size. And if the packet is not allocated by av_new_packet() (which seems to be impossible atm), both pkt->size as well as size are 0, so setting it again is unnecessary in this scenario, too. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavdevice/lavfi.c')
-rw-r--r--libavdevice/lavfi.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c
index 5e814eada8..72ec1bb9b7 100644
--- a/libavdevice/lavfi.c
+++ b/libavdevice/lavfi.c
@@ -474,7 +474,6 @@ static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt)
pkt->stream_index = stream_idx;
pkt->pts = frame->pts;
pkt->pos = frame->pkt_pos;
- pkt->size = size;
av_frame_unref(frame);
return size;
}