mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-24 15:57:00 +00:00
typo, typedef uint8_t GUID[16] in asf.h, and fix warning: asf-enc.c:202: warning: passing argument 2 of 'put_buffer' from incompatible pointer type
Originally committed as revision 11684 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
febc8fad0c
commit
d7742a7491
@ -199,7 +199,7 @@ static const AVCodecTag codec_asf_bmp_tags[] = {
|
|||||||
static void put_guid(ByteIOContext *s, const GUID *g)
|
static void put_guid(ByteIOContext *s, const GUID *g)
|
||||||
{
|
{
|
||||||
assert(sizeof(*g) == 16);
|
assert(sizeof(*g) == 16);
|
||||||
put_buffer(s, g, sizeof(*g));
|
put_buffer(s, *g, sizeof(*g));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void put_str16_nolen(ByteIOContext *s, const char *tag);
|
static void put_str16_nolen(ByteIOContext *s, const char *tag);
|
||||||
|
Loading…
Reference in New Issue
Block a user