-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from remotion-dev/7.1
- Loading branch information
Showing
8 changed files
with
53 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
diff --git a/fftools/ffmpeg_dec.c b/fftools/ffmpeg_dec.c | ||
index fcee8b65ac..07edcef4f2 100644 | ||
index 2723a0312e..8d5c7e68f6 100644 | ||
--- a/fftools/ffmpeg_dec.c | ||
+++ b/fftools/ffmpeg_dec.c | ||
@@ -214,7 +214,7 @@ static void audio_ts_process(void *logctx, Decoder *d, AVFrame *frame) | ||
@@ -252,7 +252,7 @@ static void audio_ts_process(DecoderPriv *dp, AVFrame *frame) | ||
// on samplerate change, choose a new internal timebase for timestamp | ||
// generation that can represent timestamps from all the samplerates | ||
// seen so far | ||
- tb = audio_samplerate_update(logctx, d, frame); | ||
- tb = audio_samplerate_update(dp, frame); | ||
+ tb = frame->time_base; | ||
pts_pred = d->last_frame_pts == AV_NOPTS_VALUE ? 0 : | ||
d->last_frame_pts + d->last_frame_duration_est; | ||
pts_pred = dp->last_frame_pts == AV_NOPTS_VALUE ? 0 : | ||
dp->last_frame_pts + dp->last_frame_duration_est; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.