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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2012-09-21 17:57:09 +0400
committerClément Bœsch <ubitux@gmail.com>2012-09-21 19:27:57 +0400
commit405ee405c9a7e340fe175b8adf3f1172d4cf81cf (patch)
treef05278932e00a9a734a2c86cdd3204f3a5187dfb /ffmpeg.c
parent41f7e0649ff24d75708d47f603ebdb2dff168f2d (diff)
ffmpeg: complete mov/mp4 based timebase hack with "f4v" format.
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index c48aec7116..a30ffb19aa 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2057,6 +2057,7 @@ static int transcode_init(void)
} 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")
+ && strcmp(oc->oformat->name, "f4v")
) {
if( copy_tb<0 && icodec->time_base.den
&& av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base)