mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-09 14:14:39 +02:00
cosmetics
Originally committed as revision 7270 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
896bcd2e85
commit
759dd138df
@ -41,12 +41,10 @@ static int flv_probe(AVProbeData *p)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int amf_get_string(ByteIOContext *ioc, char *buffer, int buffsize) {
|
static int amf_get_string(ByteIOContext *ioc, char *buffer, int buffsize) {
|
||||||
int length;
|
int length = get_be16(ioc);
|
||||||
|
|
||||||
length = get_be16(ioc);
|
|
||||||
if(length >= buffsize) {
|
if(length >= buffsize) {
|
||||||
url_fskip(ioc, length);
|
url_fskip(ioc, length);
|
||||||
return -1; //string will not fit in buffer
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
get_buffer(ioc, buffer, length);
|
get_buffer(ioc, buffer, length);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user