You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
asfdec: Fix typo in comment
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
committed by
Luca Barbato
parent
40d43d25e7
commit
34d45b3616
@@ -1218,7 +1218,7 @@ static int asf_read_single_payload(AVFormatContext *s, ASFPacket *asf_pkt)
|
|||||||
int ret, data_size;
|
int ret, data_size;
|
||||||
|
|
||||||
if (!asf_pkt->data_size) {
|
if (!asf_pkt->data_size) {
|
||||||
data_size = avio_rl32(pb); // read media objectgg size
|
data_size = avio_rl32(pb); // read media object size
|
||||||
if (data_size <= 0)
|
if (data_size <= 0)
|
||||||
return AVERROR_EOF;
|
return AVERROR_EOF;
|
||||||
if ((ret = av_new_packet(&asf_pkt->avpkt, data_size)) < 0)
|
if ((ret = av_new_packet(&asf_pkt->avpkt, data_size)) < 0)
|
||||||
|
Reference in New Issue
Block a user