mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
avformat/movenc: Use the rate from av_timecode_init_from_string() for tmcd
Fixes Ticket2892 Reveiwed-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4fb3e1a652
commit
2501f6d3d6
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user