summaryrefslogtreecommitdiff
path: root/libavcodec/svq1.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-01-02 16:19:27 +0000
committerDiego Biurrun <diego@biurrun.de>2009-01-02 16:19:27 +0000
commit0f0b707fa3e7335b38db60243b360c94a2e56140 (patch)
tree020b9e1331feb6f23a3a5ace0d043c4a2a3a74a9 /libavcodec/svq1.h
parente329b6ec7a3600eadeadc8609659f29c3041c410 (diff)
Avoid POSIX-reserved _t namespace.
Originally committed as revision 16407 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq1.h')
-rw-r--r--libavcodec/svq1.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/svq1.h b/libavcodec/svq1.h
index a8469d920c..a4b5a16115 100644
--- a/libavcodec/svq1.h
+++ b/libavcodec/svq1.h
@@ -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 uint8_t ff_svq1_inter_multistage_vlc[6][8][2];
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 */