Skip to content
Snippets Groups Projects
Commit 510e3f07 authored by Lyndon Brown's avatar Lyndon Brown Committed by Jean-Baptiste Kempf
Browse files

av1: fix condition scope issue in macro

caused a big block of warnings.
parent 79d852d5
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,10 @@ static bool block_Differs(const block_t *a, const block_t *b)
{\
block_ChainLastAppend(&p_sys->name.pp_chain_last, b);\
if(p_sys->tu.dts == VLC_TICK_INVALID)\
p_sys->tu.dts = b->i_dts; p_sys->tu.pts = b->i_pts;\
{\
p_sys->tu.dts = b->i_dts;\
p_sys->tu.pts = b->i_pts;\
}\
}
static void UpdateDecoderFormat(decoder_t *p_dec)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment