diff --git a/libavformat/utils.c b/libavformat/utils.c
index ce05fa0b9910003243fdc7d4530393f4da18b84b..59ee8df8bbc0035b7aefe18c30effcee6d53e2e8 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -484,6 +484,7 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename,
 
 int av_read_packet(AVFormatContext *s, AVPacket *pkt)
 {
+    av_init_packet(pkt);
     return s->iformat->read_packet(s, pkt);
 }
 
@@ -702,6 +703,8 @@ static int av_read_frame_internal(AVFormatContext *s, AVPacket *pkt)
     AVStream *st;
     int len, ret, i;
 
+    av_init_packet(pkt);
+
     for(;;) {
         /* select current input stream component */
         st = s->cur_st;