diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-01-23 23:34:29 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-23 23:34:29 +0000 |
commit | e9a9e0c21090d18089d212c39e9249f9a7ed559c (patch) | |
tree | 2217ae1ac0279ebc6081549625fc2b0007d96515 /ffmpeg.c | |
parent | 0d4c587854097c1cf530d1d9fd0ff8bb231be427 (diff) | |
download | ffmpeg-e9a9e0c21090d18089d212c39e9249f9a7ed559c.tar.gz |
use av_strdup()
Originally committed as revision 1507 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1870,7 +1870,7 @@ void opt_audio_channels(const char *arg) void opt_video_device(const char *arg) { - video_device = strdup(arg); + video_device = av_strdup(arg); } void opt_video_channel(const char *arg) @@ -1880,7 +1880,7 @@ void opt_video_channel(const char *arg) void opt_audio_device(const char *arg) { - audio_device = strdup(arg); + audio_device = av_strdup(arg); } void opt_dv1394(const char *arg) @@ -1916,7 +1916,7 @@ void add_frame_hooker(const char *arg) int argc = 0; char *argv[64]; int i; - char *args = strdup(arg); + char *args = av_strdup(arg); argv[0] = strtok(args, " "); while (argc < 62 && (argv[++argc] = strtok(NULL, " "))) { @@ -2812,7 +2812,7 @@ int main(int argc, char **argv) } if (po->flags & OPT_STRING) { char *str; - str = strdup(arg); + str = av_strdup(arg); *po->u.str_arg = str; } else if (po->flags & OPT_BOOL) { *po->u.int_arg = 1; |