Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-08-08 14:04:53 +0400
committerAnton Khirnov <anton@khirnov.net>2012-08-08 23:55:45 +0400
commit57d24225595af78b0fd836d4d145f5d181e320a2 (patch)
tree0ebb5864ee7082f637f748262eae4314de5bdd5e /avconv.h
parent0c00fd80ee4791bd70b634084307fc9f179e0412 (diff)
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/avconv.h b/avconv.h
index 0cc53c5134..756d197ef5 100644
--- a/avconv.h
+++ b/avconv.h
@@ -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;