• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

githubのコードからのfolk


コミットメタ情報

リビジョン635ffebba8e1131c1f45c426d357eb26648b5ea0 (tree)
日時2011-03-01 09:06:41
作者jstebbins <jstebbins@b64f...>
コミッターjstebbins

ログメッセージ

initialize title->angle_count to 1
sources that don't support multiple angles should default to 1

git-svn-id: svn://localhost/HandBrake/trunk@3821 b64f7644-9d1e-0410-96f1-a4d463321fa5

変更サマリ

差分

--- a/libhb/common.c
+++ b/libhb/common.c
@@ -1032,6 +1032,7 @@ hb_title_t * hb_title_init( char * path, int index )
10321032 // default to decoding mpeg2
10331033 t->video_id = 0xE0;
10341034 t->video_codec = WORK_DECMPEG2;
1035+ t->angle_count = 1;
10351036
10361037 return t;
10371038 }