comparison intfloat_readwrite.c @ 12:ce8f9f4390c3 libavutil

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 89cdb3b541e2
children af59e84e283d
comparison
equal deleted inserted replaced
11:b5bd7d00de0f 12:ce8f9f4390c3
15 * 15 *
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software 17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */ 19 */
20 20
21 /** 21 /**
22 * @file intfloat_readwrite.c 22 * @file intfloat_readwrite.c
23 * Portable IEEE float/double read/write functions. 23 * Portable IEEE float/double read/write functions.
24 */ 24 */
25 25
26 #include "common.h" 26 #include "common.h"
27 27
28 double av_int2dbl(int64_t v){ 28 double av_int2dbl(int64_t v){
29 if(v+v > 0xFFELLU<<52) 29 if(v+v > 0xFFELLU<<52)
30 return 0.0/0.0; 30 return 0.0/0.0;