Author: gkovacs
Date: Wed Jul 29 19:52:24 2009
New Revision: 4839

Log:
included concatgen.h in concatgen.c and fixed return type

Modified:
   concat/libavformat/concatgen.c

Modified: concat/libavformat/concatgen.c
==============================================================================
--- concat/libavformat/concatgen.c      Wed Jul 29 19:47:08 2009        (r4838)
+++ concat/libavformat/concatgen.c      Wed Jul 29 19:52:24 2009        (r4839)
@@ -29,7 +29,7 @@
  *  process.
  */
 
-#include "playlist.h"
+#include "concatgen.h"
 
 int ff_concatgen_read_packet(AVFormatContext *s,
                              AVPacket *pkt)
@@ -90,10 +90,10 @@ int ff_concatgen_read_seek(AVFormatConte
     return ic->iformat->read_seek(ic, stream_index, pts, flags);
 }
 
-int ff_concatgen_read_timestamp(AVFormatContext *s,
-                                int stream_index,
-                                int64_t *pos,
-                                int64_t pos_limit)
+int64_t ff_concatgen_read_timestamp(AVFormatContext *s,
+                                    int stream_index,
+                                    int64_t *pos,
+                                    int64_t pos_limit)
 {
     PlaylistContext *ctx;
     AVFormatContext *ic;
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to