comparison src/aac/mp4ff/mp4tagupdate.c @ 3008:281fc9f7f126

Comment out two functions correctly identified by GCC as unused.
author Tony Vroon <chainsaw@gentoo.org>
date Wed, 08 Apr 2009 22:46:53 +0100
parents 3d6a2732f26a
children 90cdddf6f1c1
comparison
equal deleted inserted replaced
3007:7a7060caef14 3008:281fc9f7f126
18 18
19 result = (a<<24) | (b<<16) | (c<<8) | d; 19 result = (a<<24) | (b<<16) | (c<<8) | d;
20 return (uint32_t)result; 20 return (uint32_t)result;
21 } 21 }
22 22
23 /* GCC4 says: unused!
23 static uint16_t fix_byte_order_16(uint16_t src) 24 static uint16_t fix_byte_order_16(uint16_t src)
24 { 25 {
25 uint16_t result; 26 uint16_t result;
26 uint16_t a, b; 27 uint16_t a, b;
27 int8_t data[2]; 28 int8_t data[2];
31 b = (uint8_t)data[1]; 32 b = (uint8_t)data[1];
32 33
33 result = (a<<8) | b; 34 result = (a<<8) | b;
34 return (uint16_t)result; 35 return (uint16_t)result;
35 } 36 }
36 37 */
37 38
38 typedef struct 39 typedef struct
39 { 40 {
40 void * data; 41 void * data;
41 unsigned written; 42 unsigned written;