diff options
author | jstebbins <[email protected]> | 2015-01-30 16:50:39 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-01-30 16:50:39 +0000 |
commit | 5ac0189fc41a40bd761ff12afa205c9efdace8e0 (patch) | |
tree | bc67e9ebc5239d33367d45704c92850d13a0cde1 /libhb/muxavformat.c | |
parent | 9ada60e118b34149cffa55968c90c0a27a74b9d4 (diff) |
muxavformat: fix avformat stream time_base warning
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6831 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxavformat.c')
-rw-r--r-- | libhb/muxavformat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 668957e47..ae0eff711 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -423,6 +423,7 @@ static int avformatInit( hb_mux_object_t * m ) else { track->st->codec->time_base = m->time_base; + track->st->time_base = m->time_base; } priv_data = NULL; |