diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-12-23 14:14:38 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2013-01-09 11:52:57 -0500 |
commit | c88d245c9866e48cb8a238b7564964c1fcf3315f (patch) | |
tree | df563398123d4d52072efb6ec440cdc1ba1b7f6c /libavformat/au.c | |
parent | bdd00e2d1be31059bb772266d12ba418aa0f391a (diff) | |
download | ffmpeg-c88d245c9866e48cb8a238b7564964c1fcf3315f.tar.gz |
au: use ff_raw_write_packet()
Diffstat (limited to 'libavformat/au.c')
-rw-r--r-- | libavformat/au.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/libavformat/au.c b/libavformat/au.c index 670ec79e59..4c5af34133 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -154,6 +154,8 @@ AVInputFormat ff_au_demuxer = { #if CONFIG_AU_MUXER +#include "rawenc.h" + /* if we don't know the size in advance */ #define AU_UNKNOWN_SIZE ((uint32_t)(~0)) @@ -187,13 +189,6 @@ static int au_write_header(AVFormatContext *s) return 0; } -static int au_write_packet(AVFormatContext *s, AVPacket *pkt) -{ - AVIOContext *pb = s->pb; - avio_write(pb, pkt->data, pkt->size); - return 0; -} - static int au_write_trailer(AVFormatContext *s) { AVIOContext *pb = s->pb; @@ -221,7 +216,7 @@ AVOutputFormat ff_au_muxer = { .audio_codec = AV_CODEC_ID_PCM_S16BE, .video_codec = AV_CODEC_ID_NONE, .write_header = au_write_header, - .write_packet = au_write_packet, + .write_packet = ff_raw_write_packet, .write_trailer = au_write_trailer, .codec_tag = (const AVCodecTag* const []){ codec_au_tags, 0 }, }; |