From 0abdb2931719d96dee725e555e9b46b2b2f8a6be Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 24 Feb 2011 07:36:02 +0100 Subject: lavf: use a new ffio_wfourcc macro instead of put_tag() where possible Signed-off-by: Ronald S. Bultje --- libavformat/riff.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavformat/riff.c') diff --git a/libavformat/riff.c b/libavformat/riff.c index 4cbc2b7f0a..4e21b1c841 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -21,6 +21,7 @@ #include "libavcodec/avcodec.h" #include "avformat.h" +#include "avio_internal.h" #include "riff.h" #include "libavcodec/bytestream.h" @@ -321,7 +322,7 @@ const AVCodecTag ff_codec_wav_tags[] = { #if CONFIG_MUXERS int64_t ff_start_tag(AVIOContext *pb, const char *tag) { - put_tag(pb, tag); + ffio_wfourcc(pb, tag); avio_wl32(pb, 0); return url_ftell(pb); } -- cgit v1.2.3