Changes between Version 1 and Version 2 of Ticket #2190, comment 9
- Timestamp:
- 01/27/2013 02:02:33 PM (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2190, comment 9
v1 v2 1 One more change needed... 2 1 Sorry, let me try that again...it should read 3 2 {{{ 4 3 inter = st->codec->field_order == AV_FIELD_TT ? 't' : 'b'; 5 4 }}} 5 The old version would always evaluate to 't' whether st->codec->field_order was AV_FIELD_TT or AV_FIELD_TB. 6 6 7 The old version would always evaluate to 't' whether st->codec->field_order was AV_FIELD_TT or AV_FIELD_TB. 7 The same thing happens in the patches for libavcodec/ffv1dec.c and libavcodec/huffyuvdec.c: 8 {{{ 9 if (avctx->field_order == AV_FIELD_TT || avctx->field_order == AV_FIELD_TB) 10 p->top_field_first = 1; 11 }}} 12 should be 13 {{{ 14 p->top_field_first = (avctx->field_order == AV_FIELD_TT); 15 }}}


