]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/xa.c
avio: deprecate url_fget_max_packet_size
[ffmpeg] / libavformat / xa.c
index 504c9b20d6bbd7266d63f1f4e0ff3918310839cc..17cf237a9d6d23cfdb7b09898a57a52a09ec9c48 100644 (file)
@@ -76,15 +76,15 @@ static int xa_read_header(AVFormatContext *s,
 
     st->codec->codec_type   = AVMEDIA_TYPE_AUDIO;
     st->codec->codec_id     = CODEC_ID_ADPCM_EA_MAXIS_XA;
-    url_fskip(pb, 4);       /* Skip the XA ID */
-    xa->out_size            =  get_le32(pb);
-    url_fskip(pb, 2);       /* Skip the tag */
-    st->codec->channels     = get_le16(pb);
-    st->codec->sample_rate  = get_le32(pb);
+    avio_seek(pb, 4, SEEK_CUR);       /* Skip the XA ID */
+    xa->out_size            =  avio_rl32(pb);
+    avio_seek(pb, 2, SEEK_CUR);       /* Skip the tag */
+    st->codec->channels     = avio_rl16(pb);
+    st->codec->sample_rate  = avio_rl32(pb);
     /* Value in file is average byte rate*/
-    st->codec->bit_rate     = get_le32(pb) * 8;
-    st->codec->block_align  = get_le16(pb);
-    st->codec->bits_per_coded_sample = get_le16(pb);
+    st->codec->bit_rate     = avio_rl32(pb) * 8;
+    st->codec->block_align  = avio_rl16(pb);
+    st->codec->bits_per_coded_sample = avio_rl16(pb);
 
     av_set_pts_info(st, 64, 1, st->codec->sample_rate);