]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/rawdec.c
Merge commit '71a49fe25f2e4468fbbadbebef8d073b1b3cc1a5'
[ffmpeg] / libavformat / rawdec.c
index 876a6e6a7532a21ff9bf1596eaa54b388c215562..e926549a60332c19fd3b2969e6e83530885cf1f0 100644 (file)
@@ -43,7 +43,7 @@ int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
 
     pkt->pos= avio_tell(s->pb);
     pkt->stream_index = 0;
-    ret = ffio_read_partial(s->pb, pkt->data, size);
+    ret = avio_read_partial(s->pb, pkt->data, size);
     if (ret < 0) {
         av_packet_unref(pkt);
         return ret;