Commit f3cb1cd0 authored by Kostya Shishkov's avatar Kostya Shishkov

1l trocadero: forgot reference operator on bytestream_get_be32() argument

Originally committed as revision 22277 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 62df111c
......@@ -376,7 +376,7 @@ static void ff_amf_tag_contents(void *ctx, const uint8_t *data, const uint8_t *d
if (data[-1] == AMF_DATA_TYPE_STRING) {
size = bytestream_get_be16(&data);
} else {
size = bytestream_get_be32(data);
size = bytestream_get_be32(&data);
}
size = FFMIN(size, 1023);
memcpy(buf, data, size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment