diff svq1.h @ 8508:8bb3aa9813b5 libavcodec

Avoid POSIX-reserved _t namespace.
author diego
date Fri, 02 Jan 2009 16:19:27 +0000
parents 847bcb16028a
children e9d9d946f213
line wrap: on
line diff
--- a/svq1.h	Tue Dec 30 03:13:52 2008 +0000
+++ b/svq1.h	Fri Jan 02 16:19:27 2009 +0000
@@ -42,10 +42,10 @@
 #define SVQ1_BLOCK_INTER_4V     2
 #define SVQ1_BLOCK_INTRA        3
 
-typedef struct {
+struct svq1_frame_size {
     int width;
     int height;
-} svq1_frame_size_t;
+};
 
 uint16_t ff_svq1_packet_checksum (const uint8_t *data, const int length,
                                   int value);
@@ -59,6 +59,6 @@
 extern const uint16_t ff_svq1_intra_mean_vlc[256][2];
 extern const uint16_t ff_svq1_inter_mean_vlc[512][2];
 
-extern const svq1_frame_size_t ff_svq1_frame_size_table[8];
+extern const struct svq1_frame_size ff_svq1_frame_size_table[8];
 
 #endif /* AVCODEC_SVQ1_H */