comparison libmpdemux/yuv4mpeg_ratio.c @ 30633:32725ca88fed

cosmetics: Remove pointless empty lines at EOF.
author diego
date Sat, 20 Feb 2010 21:02:49 +0000
parents 0f1b5b68af32
children
comparison
equal deleted inserted replaced
30632:dad8e0eb182a 30633:32725ca88fed
108 /* 0:0 == unknown, so that is ok, otherwise zero denominator is bad */ 108 /* 0:0 == unknown, so that is ok, otherwise zero denominator is bad */
109 if ((r->d == 0) && (r->n != 0)) return Y4M_ERR_RANGE; 109 if ((r->d == 0) && (r->n != 0)) return Y4M_ERR_RANGE;
110 y4m_ratio_reduce(r); 110 y4m_ratio_reduce(r);
111 return Y4M_OK; 111 return Y4M_OK;
112 } 112 }
113