[soc]: r4824 - in concat/libavformat: concat.c m3u.c pls.c xspf.c
Author: gkovacs Date: Wed Jul 29 04:48:38 2009 New Revision: 4824 Log: changed internal function declarations implemented elsewhere to extern Modified: concat/libavformat/concat.c concat/libavformat/m3u.c concat/libavformat/pls.c concat/libavformat/xspf.c Modified: concat/libavformat/concat.c ============================================================================== --- concat/libavformat/concat.c Wed Jul 29 04:44:16 2009 (r4823) +++ concat/libavformat/concat.c Wed Jul 29 04:48:38 2009 (r4824) @@ -32,17 +32,17 @@ #include "playlist.h" -static int ff_concatgen_read_packet(AVFormatContext *s, AVPacket *pkt); +extern int ff_concatgen_read_packet(AVFormatContext *s, AVPacket *pkt); -static int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); +extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); -static int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); +extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); -static int ff_concatgen_read_close(AVFormatContext *s); +extern int ff_concatgen_read_close(AVFormatContext *s); -static int ff_concatgen_read_play(AVFormatContext *s); +extern int ff_concatgen_read_play(AVFormatContext *s); -static int ff_concatgen_read_pause(AVFormatContext *s); +extern int ff_concatgen_read_pause(AVFormatContext *s); // The FFmpeg codecs we support, and the IDs they have in the file static const AVCodecTag codec_concat_tags[] = { Modified: concat/libavformat/m3u.c ============================================================================== --- concat/libavformat/m3u.c Wed Jul 29 04:44:16 2009 (r4823) +++ concat/libavformat/m3u.c Wed Jul 29 04:48:38 2009 (r4824) @@ -27,17 +27,17 @@ #include "playlist.h" -static int ff_concatgen_read_packet(AVFormatContext *s, AVPacket *pkt); +extern int ff_concatgen_read_packet(AVFormatContext *s, AVPacket *pkt); -static int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); +extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); -static int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); +extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); -static int ff_concatgen_read_close(AVFormatContext *s); +extern int ff_concatgen_read_close(AVFormatContext *s); -static int ff_concatgen_read_play(AVFormatContext *s); +extern int ff_concatgen_read_play(AVFormatContext *s); -static int ff_concatgen_read_pause(AVFormatContext *s); +extern int ff_concatgen_read_pause(AVFormatContext *s); /* The ffmpeg codecs we support, and the IDs they have in the file */ static const AVCodecTag codec_m3u_tags[] = { Modified: concat/libavformat/pls.c ============================================================================== --- concat/libavformat/pls.c Wed Jul 29 04:44:16 2009 (r4823) +++ concat/libavformat/pls.c Wed Jul 29 04:48:38 2009 (r4824) @@ -27,17 +27,17 @@ #include "playlist.h" -static int ff_concatgen_read_packet(AVFormatContext *s, AVPacket *pkt); +extern int ff_concatgen_read_packet(AVFormatContext *s, AVPacket *pkt); -static int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); +extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); -static int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); +extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); -static int ff_concatgen_read_close(AVFormatContext *s); +extern int ff_concatgen_read_close(AVFormatContext *s); -static int ff_concatgen_read_play(AVFormatContext *s); +extern int ff_concatgen_read_play(AVFormatContext *s); -static int ff_concatgen_read_pause(AVFormatContext *s); +extern int ff_concatgen_read_pause(AVFormatContext *s); /* The ffmpeg codecs we support, and the IDs they have in the file */ static const AVCodecTag codec_pls_tags[] = { Modified: concat/libavformat/xspf.c ============================================================================== --- concat/libavformat/xspf.c Wed Jul 29 04:44:16 2009 (r4823) +++ concat/libavformat/xspf.c Wed Jul 29 04:48:38 2009 (r4824) @@ -30,17 +30,17 @@ #include "playlist.h" -static int ff_concatgen_read_packet(AVFormatContext *s, AVPacket *pkt); +extern int ff_concatgen_read_packet(AVFormatContext *s, AVPacket *pkt); -static int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); +extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); -static int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); +extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); -static int ff_concatgen_read_close(AVFormatContext *s); +extern int ff_concatgen_read_close(AVFormatContext *s); -static int ff_concatgen_read_play(AVFormatContext *s); +extern int ff_concatgen_read_play(AVFormatContext *s); -static int ff_concatgen_read_pause(AVFormatContext *s); +extern int ff_concatgen_read_pause(AVFormatContext *s); /* The ffmpeg codecs we support, and the IDs they have in the file */ static const AVCodecTag codec_xspf_tags[] = {
participants (1)
-
gkovacs