diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-06-28 08:45:02 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-07-19 09:37:11 +0200 |
commit | bd2ab27c488ae92c7820efe11d4f53d84e94d58e (patch) | |
tree | eef97a58b304750431aef9302e6c6b36a6568872 /cmdutils.h | |
parent | 6d5d9246042acb804a652e6fedfb7afe0ca85614 (diff) | |
download | ffmpeg-bd2ab27c488ae92c7820efe11d4f53d84e94d58e.tar.gz |
avconv: use read_file() for reading the 2pass stats
Also, drop the now unused cmdutils_read_file(). There is no reason to
have two functions doing essentially the same thing.
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cmdutils.h b/cmdutils.h index d90ad4549d..45d98586fa 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -460,18 +460,6 @@ int show_sample_fmts(void *optctx, const char *opt, const char *arg); */ int read_yesno(void); -/** - * Read the file with name filename, and put its content in a newly - * allocated 0-terminated buffer. - * - * @param filename file to read from - * @param bufptr location where pointer to buffer is returned - * @param size location where size of buffer is returned - * @return 0 in case of success, a negative value corresponding to an - * AVERROR error code in case of failure. - */ -int cmdutils_read_file(const char *filename, char **bufptr, size_t *size); - typedef struct PtsCorrectionContext { int64_t num_faulty_pts; /// Number of incorrect PTS values so far int64_t num_faulty_dts; /// Number of incorrect DTS values so far |