[FFmpeg-devel] [PATCH 4/4] avformat/asfdec_o: Remove code duplication
Andreas Rheinhardt
andreas.rheinhardt at gmail.com
Thu Nov 12 19:33:28 EET 2020
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
libavformat/asfdec_o.c | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/libavformat/asfdec_o.c b/libavformat/asfdec_o.c
index 9fd38f1bfe..655ba9f9ef 100644
--- a/libavformat/asfdec_o.c
+++ b/libavformat/asfdec_o.c
@@ -1542,14 +1542,7 @@ static void reset_packet_state(AVFormatContext *s)
asf->sub_dts = 0;
for (i = 0; i < asf->nb_streams; i++) {
ASFPacket *pkt = &asf->asf_st[i]->pkt;
- pkt->size_left = 0;
- pkt->data_size = 0;
- pkt->duration = 0;
- pkt->flags = 0;
- pkt->dts = 0;
- pkt->duration = 0;
- av_packet_unref(&pkt->avpkt);
- av_init_packet(&pkt->avpkt);
+ reset_packet(pkt);
}
}
--
2.25.1
More information about the ffmpeg-devel
mailing list