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:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-03 16:17:54 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-05-03 16:52:03 +0400
commit2b7f595aca84d421767e9755ce81d8a621898264 (patch)
tree4d9387b90de010612d24e872119fd53c948bb41d /ffmpeg.h
parent22dc25cb29ab7b84d6d03f56766a15b6556a7b11 (diff)
parent76d23f40314fc1dcd74a3d470b17782cc0ee5a3a (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: avconv: do not send non-monotonous DTS to the muxers. Conflicts: ffmpeg_opt.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.h')
-rw-r--r--ffmpeg.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ffmpeg.h b/ffmpeg.h
index 3641a626b4..558c996789 100644
--- a/ffmpeg.h
+++ b/ffmpeg.h
@@ -320,6 +320,8 @@ typedef struct OutputStream {
/* pts of the first frame encoded for this stream, used for limiting
* recording time */
int64_t first_pts;
+ /* dts of the last packet sent to the muxer */
+ int64_t last_mux_dts;
AVBitStreamFilterContext *bitstream_filters;
AVCodec *enc;
int64_t max_frames;