diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-08-08 12:04:53 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-08-08 21:55:45 +0200 |
commit | 57d24225595af78b0fd836d4d145f5d181e320a2 (patch) | |
tree | 0ebb5864ee7082f637f748262eae4314de5bdd5e /avconv.h | |
parent | 0c00fd80ee4791bd70b634084307fc9f179e0412 (diff) | |
download | ffmpeg-57d24225595af78b0fd836d4d145f5d181e320a2.tar.gz |
avconv: rename OutputStream.is_past_recording_time to finished.
The new name is shorter and more accurate, since this variable is no
longer used only for checking recording time constraint.
Diffstat (limited to 'avconv.h')
-rw-r--r-- | avconv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -288,7 +288,7 @@ typedef struct OutputStream { int64_t sws_flags; AVDictionary *opts; - int is_past_recording_time; + int finished; /* no more packets should be written for this stream */ int stream_copy; const char *attachment_filename; int copy_initial_nonkeyframes; |