From 490579042adbd90921a175c3f738e662b93fe628 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Wed, 10 Sep 2003 22:37:33 +0000 Subject: 64 bit pts for writing - more const usage Originally committed as revision 2255 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/flvenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/flvenc.c') diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index 65bdf4b8d5..e6e3d7a011 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -242,7 +242,7 @@ static int flv_write_trailer(AVFormatContext *s) } static int flv_write_packet(AVFormatContext *s, int stream_index, - uint8_t *buf, int size, int timestamp) + const uint8_t *buf, int size, int64_t timestamp) { ByteIOContext *pb = &s->pb; AVCodecContext *enc = &s->streams[stream_index]->codec; -- cgit v1.2.3