Revision a960576f
libavformat/avio_internal.h | ||
---|---|---|
42 | 42 |
|
43 | 43 |
void ffio_fill(AVIOContext *s, int b, int count); |
44 | 44 |
|
45 |
#define ffio_wfourcc(pb, str) avio_wl32(pb, MKTAG((str)[0], (str)[1], (str)[2], (str)[3])) |
|
45 |
static av_always_inline void ffio_wfourcc(AVIOContext *pb, const uint8_t *s) |
|
46 |
{ |
|
47 |
avio_wl32(pb, MKTAG(s[0], s[1], s[2], s[3])); |
|
48 |
} |
|
46 | 49 |
|
47 | 50 |
#endif // AVFORMAT_AVIO_INTERNAL_H |
Also available in: Unified diff