diff flvenc.c @ 241:3d92f793fd67 libavformat

64 bit pts for writing - more const usage
author bellard
date Wed, 10 Sep 2003 22:37:33 +0000
parents eb90c0a5a1ba
children e9232aa21976
line wrap: on
line diff
--- a/flvenc.c	Wed Sep 10 13:00:24 2003 +0000
+++ b/flvenc.c	Wed Sep 10 22:37:33 2003 +0000
@@ -242,7 +242,7 @@
 }
 
 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;