comparison svq1.c @ 8508:8bb3aa9813b5 libavcodec

Avoid POSIX-reserved _t namespace.
author diego
date Fri, 02 Jan 2009 16:19:27 +0000
parents 057c243a4e3b
children e9d9d946f213
comparison
equal deleted inserted replaced
8507:779a9c93bf61 8508:8bb3aa9813b5
35 #include "svq1.h" 35 #include "svq1.h"
36 #include "svq1_cb.h" 36 #include "svq1_cb.h"
37 #include "svq1_vlc.h" 37 #include "svq1_vlc.h"
38 38
39 /* standard video sizes */ 39 /* standard video sizes */
40 const svq1_frame_size_t ff_svq1_frame_size_table[8] = { 40 const struct svq1_frame_size ff_svq1_frame_size_table[8] = {
41 { 160, 120 }, { 128, 96 }, { 176, 144 }, { 352, 288 }, 41 { 160, 120 }, { 128, 96 }, { 176, 144 }, { 352, 288 },
42 { 704, 576 }, { 240, 180 }, { 320, 240 }, { -1, -1 } 42 { 704, 576 }, { 240, 180 }, { 320, 240 }, { -1, -1 }
43 }; 43 };