mirror of https://git.ffmpeg.org/ffmpeg.git
consistant error return for asf_get_packet()
Originally committed as revision 7657 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
92216453db
commit
f7835507cb
|
@ -466,6 +466,10 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||||
default: var = defval; break; \
|
default: var = defval; break; \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return <0 in case of an error
|
||||||
|
*/
|
||||||
static int asf_get_packet(AVFormatContext *s)
|
static int asf_get_packet(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
ASFContext *asf = s->priv_data;
|
ASFContext *asf = s->priv_data;
|
||||||
|
@ -483,7 +487,7 @@ static int asf_get_packet(AVFormatContext *s)
|
||||||
if (get_le16(pb) != 0) {
|
if (get_le16(pb) != 0) {
|
||||||
if (!url_feof(pb))
|
if (!url_feof(pb))
|
||||||
av_log(s, AV_LOG_ERROR, "ff asf bad non zero\n");
|
av_log(s, AV_LOG_ERROR, "ff asf bad non zero\n");
|
||||||
return AVERROR_IO;
|
return -1;
|
||||||
}
|
}
|
||||||
rsize+=2;
|
rsize+=2;
|
||||||
/* }else{
|
/* }else{
|
||||||
|
|
Loading…
Reference in New Issue