diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-04-08 15:07:42 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-04-08 15:07:42 +0000 |
commit | a266644f560f5292eea477093fb9183099f3921b (patch) | |
tree | aa8f389c60c2cdc3c1a2dddca148cf5726bcdfeb /libav/au.c | |
parent | 684f44d9a06aaa5f0f54807ddcf7d1041e33295a (diff) | |
download | ffmpeg-a266644f560f5292eea477093fb9183099f3921b.tar.gz |
* more warning cleanups
* adding const & statics
Originally committed as revision 387 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/au.c')
-rw-r--r-- | libav/au.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/au.c b/libav/au.c index 7aefb1a6ff..5f57ce2372 100644 --- a/libav/au.c +++ b/libav/au.c @@ -73,7 +73,7 @@ static int au_write_header(AVFormatContext *s) } static int au_write_packet(AVFormatContext *s, int stream_index_ptr, - UINT8 *buf, int size) + UINT8 *buf, int size, int force_pts) { ByteIOContext *pb = &s->pb; put_buffer(pb, buf, size); |