]> git.sesse.net Git - ffmpeg/commitdiff
ffmpeg: handle stream copy timebase selection for mp4 as if it had VFPS set.
authorMichael Niedermayer <michaelni@gmx.at>
Mon, 5 Dec 2011 02:19:28 +0000 (03:19 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 5 Dec 2011 02:19:28 +0000 (03:19 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
ffmpeg.c

index 90f05ce12f8fc1b2e7d29e053ca82e3e4a6216bb..880e45214c54c3d94d8ce0d73440557b2c8f3639 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2205,7 +2205,10 @@ static int transcode_init(OutputFile *output_files, int nb_output_files,
                     codec->time_base.num *= icodec->ticks_per_frame;
                     codec->time_base.den *= 2;
                 }
-            } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)) {
+            } else if(!(oc->oformat->flags & AVFMT_VARIABLE_FPS)
+                      && strcmp(oc->oformat->name, "mov") && strcmp(oc->oformat->name, "mp4") && strcmp(oc->oformat->name, "3gp")
+                      && strcmp(oc->oformat->name, "3g2") && strcmp(oc->oformat->name, "psp") && strcmp(oc->oformat->name, "ipod")
+            ) {
                 if(   copy_tb<0 && av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base)
                                 && av_q2d(ist->st->time_base) < 1.0/500
                    || copy_tb==0){