Commit f955fdc7 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  cmdutils: Rename read_file to cmdutils_read_file

Conflicts:
	ffmpeg.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 3e5ea9e4 02170990
...@@ -2241,7 +2241,7 @@ static int transcode_init(OutputFile *output_files, ...@@ -2241,7 +2241,7 @@ static int transcode_init(OutputFile *output_files,
} else { } else {
char *logbuffer; char *logbuffer;
size_t logbuffer_size; size_t logbuffer_size;
if (read_file(logfilename, &logbuffer, &logbuffer_size) < 0) { if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n", av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
logfilename); logfilename);
exit_program(1); exit_program(1);
......
...@@ -807,7 +807,7 @@ int read_yesno(void) ...@@ -807,7 +807,7 @@ int read_yesno(void)
return yesno; return yesno;
} }
int read_file(const char *filename, char **bufptr, size_t *size) int cmdutils_read_file(const char *filename, char **bufptr, size_t *size)
{ {
int ret; int ret;
FILE *f = fopen(filename, "rb"); FILE *f = fopen(filename, "rb");
......
...@@ -323,7 +323,7 @@ int read_yesno(void); ...@@ -323,7 +323,7 @@ int read_yesno(void);
* @return 0 in case of success, a negative value corresponding to an * @return 0 in case of success, a negative value corresponding to an
* AVERROR error code in case of failure. * AVERROR error code in case of failure.
*/ */
int read_file(const char *filename, char **bufptr, size_t *size); int cmdutils_read_file(const char *filename, char **bufptr, size_t *size);
/** /**
* Get a file corresponding to a preset file. * Get a file corresponding to a preset file.
......
...@@ -2250,7 +2250,7 @@ static int transcode_init(OutputFile *output_files, int nb_output_files, ...@@ -2250,7 +2250,7 @@ static int transcode_init(OutputFile *output_files, int nb_output_files,
if (codec->flags & CODEC_FLAG_PASS2) { if (codec->flags & CODEC_FLAG_PASS2) {
char *logbuffer; char *logbuffer;
size_t logbuffer_size; size_t logbuffer_size;
if (read_file(logfilename, &logbuffer, &logbuffer_size) < 0) { if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0) {
av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n", av_log(NULL, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
logfilename); logfilename);
exit_program(1); exit_program(1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment