diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-21 20:02:20 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-21 14:25:17 -0500 |
commit | 0ac8e2bf2bf3d636241bf2811018d9974687a63c (patch) | |
tree | 9746362b4f319490b2a718b7adfe6800c8290bdd /libavformat/spdifenc.c | |
parent | 77eb5504d3b3e1047900382350e0bc5e0bfb16b5 (diff) | |
download | ffmpeg-0ac8e2bf2bf3d636241bf2811018d9974687a63c.tar.gz |
avio: make put_nbyte internal.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/spdifenc.c')
-rw-r--r-- | libavformat/spdifenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/spdifenc.c b/libavformat/spdifenc.c index 8c0ee70e2c..90ac8adc9f 100644 --- a/libavformat/spdifenc.c +++ b/libavformat/spdifenc.c @@ -525,7 +525,7 @@ static int spdif_write_packet(struct AVFormatContext *s, AVPacket *pkt) if (ctx->out_bytes & 1) spdif_put_16(ctx, s->pb, ctx->out_buf[ctx->out_bytes - 1] << 8); - put_nbyte(s->pb, 0, padding); + ffio_fill(s->pb, 0, padding); av_log(s, AV_LOG_DEBUG, "type=%x len=%i pkt_offset=%i\n", ctx->data_type, ctx->out_bytes, ctx->pkt_offset); |