1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-03-28 12:32:17 +02:00

bunch of small thing patch by (Roman Shaposhnick <rvs at sun dot com>)

Originally committed as revision 1753 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Roman Shaposhnik 2003-04-11 09:43:05 +00:00 committed by Michael Niedermayer
parent 2f5feea48b
commit a7beab731d
2 changed files with 8 additions and 2 deletions

3
configure vendored
View File

@ -45,6 +45,9 @@ case "$cpu" in
mips) mips)
cpu="mips" cpu="mips"
;; ;;
sun4u)
cpu="sparc64"
;;
*) *)
cpu="unknown" cpu="unknown"
;; ;;

View File

@ -3823,8 +3823,11 @@ static int parse_ffconfig(const char *filename)
if (!argbuf[0]) if (!argbuf[0])
break; break;
if (strlen(argbuf + 1)) {
feed->child_argv[i] = av_malloc(strlen(argbuf + 1)); feed->child_argv[i] = av_malloc(strlen(argbuf + 1));
strcpy(feed->child_argv[i], argbuf); strcpy(feed->child_argv[i], argbuf);
} else
feed->child_argv[i] = NULL;
} }
feed->child_argv[i] = av_malloc(30 + strlen(feed->filename)); feed->child_argv[i] = av_malloc(30 + strlen(feed->filename));