mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-04-20 21:00:41 +08:00
lavf: replace all uses of url_fskip with avio_seek
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
committed by
Ronald S. Bultje
parent
6b4aa5dac8
commit
e356fc57a2
@@ -201,7 +201,7 @@ static int spdif_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
}
|
||||
|
||||
/* skip over the padding to the beginning of the next frame */
|
||||
url_fskip(pb, offset - pkt->size - BURST_HEADER_SIZE);
|
||||
avio_seek(pb, offset - pkt->size - BURST_HEADER_SIZE, SEEK_CUR);
|
||||
|
||||
if (!s->nb_streams) {
|
||||
/* first packet, create a stream */
|
||||
|
||||
Reference in New Issue
Block a user