14 lines
614 B
14 lines
614 B
7 years ago
|
--- a/libavformat/mov.c
|
||
|
+++ b/libavformat/mov.c
|
||
4 years ago
|
@@ -3634,8 +3634,10 @@
|
||
7 years ago
|
|
||
|
if (ctts_data_old && ctts_index_old < ctts_count_old) {
|
||
|
curr_ctts = ctts_data_old[ctts_index_old].duration;
|
||
|
+ /*
|
||
|
av_log(mov->fc, AV_LOG_DEBUG, "stts: %"PRId64" ctts: %"PRId64", ctts_index: %"PRId64", ctts_count: %"PRId64"\n",
|
||
|
curr_cts, curr_ctts, ctts_index_old, ctts_count_old);
|
||
|
+ */
|
||
|
curr_cts += curr_ctts;
|
||
|
ctts_sample_old++;
|
||
|
if (ctts_sample_old == ctts_data_old[ctts_index_old].count) {
|