[FFmpeg-soc] [soc]: r4826 - in concat/libavformat: m3u.c pls.c xspf.c
gkovacs
subversion at mplayerhq.hu
Wed Jul 29 09:08:10 CEST 2009
Author: gkovacs
Date: Wed Jul 29 09:08:09 2009
New Revision: 4826
Log:
fixed local declarations in other files as well
Modified:
concat/libavformat/m3u.c
concat/libavformat/pls.c
concat/libavformat/xspf.c
Modified: concat/libavformat/m3u.c
==============================================================================
--- concat/libavformat/m3u.c Wed Jul 29 05:06:53 2009 (r4825)
+++ concat/libavformat/m3u.c Wed Jul 29 09:08:09 2009 (r4826)
@@ -31,7 +31,7 @@ extern int ff_concatgen_read_packet(AVFo
extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags);
-extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit);
+extern int64_t ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit);
extern int ff_concatgen_read_close(AVFormatContext *s);
Modified: concat/libavformat/pls.c
==============================================================================
--- concat/libavformat/pls.c Wed Jul 29 05:06:53 2009 (r4825)
+++ concat/libavformat/pls.c Wed Jul 29 09:08:09 2009 (r4826)
@@ -31,7 +31,7 @@ extern int ff_concatgen_read_packet(AVFo
extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags);
-extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit);
+extern int64_t ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit);
extern int ff_concatgen_read_close(AVFormatContext *s);
Modified: concat/libavformat/xspf.c
==============================================================================
--- concat/libavformat/xspf.c Wed Jul 29 05:06:53 2009 (r4825)
+++ concat/libavformat/xspf.c Wed Jul 29 09:08:09 2009 (r4826)
@@ -34,7 +34,7 @@ extern int ff_concatgen_read_packet(AVFo
extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags);
-extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit);
+extern int64_t ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit);
extern int ff_concatgen_read_close(AVFormatContext *s);
More information about the FFmpeg-soc
mailing list