• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

githubのコードからのfolk


Commit MetaInfo

Revision62e3a5e711075d86be7a0b96f40918039db35907 (tree)
Time2010-11-14 10:54:27
Authorjstebbins <jstebbins@b64f...>
Commiterjstebbins

Log Message

fix a problem with the first timestamp returned from av_parser_parse2

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

Change Summary

Incremental Difference

--- a/libhb/decavcodec.c
+++ b/libhb/decavcodec.c
@@ -851,7 +851,7 @@ static void decodeVideo( hb_work_private_t *pv, uint8_t *data, int size, int seq
851851 uint8_t *pout;
852852 int pout_len;
853853 int len = av_parser_parse2( pv->parser, pv->context, &pout, &pout_len,
854- data + pos, size - pos, pts, dts, AV_NOPTS_VALUE );
854+ data + pos, size - pos, pts, dts, 0 );
855855 pos += len;
856856
857857 if ( pout_len > 0 )