Revision 3308ddfb
libavformat/avio.h | ||
---|---|---|
407 | 407 |
attribute_deprecated void put_be24(AVIOContext *s, unsigned int val); |
408 | 408 |
attribute_deprecated void put_le16(AVIOContext *s, unsigned int val); |
409 | 409 |
attribute_deprecated void put_be16(AVIOContext *s, unsigned int val); |
410 |
attribute_deprecated void put_tag(AVIOContext *s, const char *tag); |
|
410 | 411 |
/** |
411 | 412 |
* @} |
412 | 413 |
*/ |
... | ... | |
443 | 444 |
void avio_wb24(AVIOContext *s, unsigned int val); |
444 | 445 |
void avio_wl16(AVIOContext *s, unsigned int val); |
445 | 446 |
void avio_wb16(AVIOContext *s, unsigned int val); |
446 |
void put_tag(AVIOContext *s, const char *tag); |
|
447 | 447 |
|
448 | 448 |
#if FF_API_OLD_AVIO |
449 | 449 |
attribute_deprecated void put_strz(AVIOContext *s, const char *buf); |
libavformat/aviobuf.c | ||
---|---|---|
449 | 449 |
avio_w8(s, val); |
450 | 450 |
} |
451 | 451 |
|
452 |
#if FF_API_OLD_AVIO |
|
452 | 453 |
void put_tag(AVIOContext *s, const char *tag) |
453 | 454 |
{ |
454 | 455 |
while (*tag) { |
455 | 456 |
avio_w8(s, *tag++); |
456 | 457 |
} |
457 | 458 |
} |
459 |
#endif |
|
458 | 460 |
|
459 | 461 |
/* Input stream */ |
460 | 462 |
|
Also available in: Unified diff