[FFmpeg-soc] [soc]: r5268 - in concat/libavformat: avplaylist.c avplaylist.h
gkovacs
subversion at mplayerhq.hu
Tue Aug 25 09:56:58 CEST 2009
Author: gkovacs
Date: Tue Aug 25 09:56:58 2009
New Revision: 5268
Log:
fix alignment of parameters passed to av_playlist_split_encodedstring
Modified:
concat/libavformat/avplaylist.c
concat/libavformat/avplaylist.h
Modified: concat/libavformat/avplaylist.c
==============================================================================
--- concat/libavformat/avplaylist.c Tue Aug 25 09:41:11 2009 (r5267)
+++ concat/libavformat/avplaylist.c Tue Aug 25 09:56:58 2009 (r5268)
@@ -140,9 +140,9 @@ AVFormatContext *av_playlist_formatconte
}
int av_playlist_split_encodedstring(const char *s,
- const char sep,
- char ***flist_ptr,
- int *len_ptr)
+ const char sep,
+ char ***flist_ptr,
+ int *len_ptr)
{
char c, *ts, **flist;
int i, len, buflen, *sepidx, *sepidx_tmp;
Modified: concat/libavformat/avplaylist.h
==============================================================================
--- concat/libavformat/avplaylist.h Tue Aug 25 09:41:11 2009 (r5267)
+++ concat/libavformat/avplaylist.h Tue Aug 25 09:56:58 2009 (r5268)
@@ -97,9 +97,9 @@ void av_playlist_relative_paths(char **f
* @return Returns 0 upon success, or negative upon failure.
*/
int av_playlist_split_encodedstring(const char *s,
- const char sep,
- char ***flist_ptr,
- int *len_ptr);
+ const char sep,
+ char ***flist_ptr,
+ int *len_ptr);
/** @brief Allocates and returns a AVPlaylistContext with playlist elements specified by a file list.
* @param flist List of filenames from which to construct the playlist.
More information about the FFmpeg-soc
mailing list