pstrcpy -> av_strlcpy

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23622 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-06-24 08:39:40 +00:00
parent 865605639c
commit b88ce7fe9d
1 changed files with 6 additions and 7 deletions

View File

@ -22,6 +22,7 @@
#else
#include "avformat.h"
#endif
#include "libavutil/avstring.h"
extern const struct AVCodecTag *mp_wav_taglists[];
extern const struct AVCodecTag *mp_bmp_taglists[];
@ -34,8 +35,6 @@ extern char *info_copyright;
extern char *info_sourceform;
extern char *info_comment;
void pstrcpy(char *buf, int buf_size, const char *str);
typedef struct {
//AVInputFormat *avif;
AVFormatContext *oc;
@ -396,15 +395,15 @@ int muxer_init_muxer_lavf(muxer_t *muxer)
priv->oc->preload= (int)(mux_preload*AV_TIME_BASE);
priv->oc->max_delay= (int)(mux_max_delay*AV_TIME_BASE);
if (info_name)
pstrcpy(priv->oc->title , sizeof(priv->oc->title ), info_name );
av_strlcpy(priv->oc->title , info_name, sizeof(priv->oc->title ));
if (info_artist)
pstrcpy(priv->oc->author , sizeof(priv->oc->author ), info_artist );
av_strlcpy(priv->oc->author , info_artist, sizeof(priv->oc->author ));
if (info_genre)
pstrcpy(priv->oc->genre , sizeof(priv->oc->genre ), info_genre );
av_strlcpy(priv->oc->genre , info_genre, sizeof(priv->oc->genre ));
if (info_copyright)
pstrcpy(priv->oc->copyright, sizeof(priv->oc->copyright), info_copyright);
av_strlcpy(priv->oc->copyright, info_copyright, sizeof(priv->oc->copyright));
if (info_comment)
pstrcpy(priv->oc->comment , sizeof(priv->oc->comment ), info_comment );
av_strlcpy(priv->oc->comment , info_comment, sizeof(priv->oc->comment ));
register_protocol(&mp_protocol);
if(url_fopen(&priv->oc->pb, mp_filename, URL_WRONLY))