[FFmpeg-cvslog] avformat/movenc: Use the rate from av_timecode_init_from_string() for tmcd

Michael Niedermayer git at videolan.org
Mon Sep 2 17:23:17 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Sep  2 16:33:02 2013 +0200| [2501f6d3d6b6e5db58ff4756baf52c69c92f096c] | committer: Michael Niedermayer

avformat/movenc: Use the rate from av_timecode_init_from_string() for tmcd

Fixes Ticket2892
Reveiwed-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2501f6d3d6b6e5db58ff4756baf52c69c92f096c
---

 libavformat/movenc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index ce0dfba..b6c57ad 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -3508,7 +3508,7 @@ static int mov_create_timecode_track(AVFormatContext *s, int index, int src_inde
     track->enc = avcodec_alloc_context3(NULL);
     track->enc->codec_type = AVMEDIA_TYPE_DATA;
     track->enc->codec_tag  = track->tag;
-    track->enc->time_base  = src_st->codec->time_base;
+    track->enc->time_base  = av_inv_q(rate);
 
     /* the tmcd track just contains one packet with the frame number */
     pkt.data = av_malloc(pkt.size);



More information about the ffmpeg-cvslog mailing list