comparison h263.h @ 11412:811467079ec9 libavcodec

Add lots of missing includes
author mru
date Mon, 08 Mar 2010 18:43:52 +0000
parents f9e0f62a7d8a
children fdafbcef52f5
comparison
equal deleted inserted replaced
11411:56ec6b45980f 11412:811467079ec9
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 #ifndef AVCODEC_H263_H 20 #ifndef AVCODEC_H263_H
21 #define AVCODEC_H263_H 21 #define AVCODEC_H263_H
22
23 #include <stdint.h>
24 #include "libavutil/rational.h"
25 #include "get_bits.h"
26 #include "mpegvideo.h"
27 #include "rl.h"
22 28
23 // The defines below define the number of bits that are read at once for 29 // The defines below define the number of bits that are read at once for
24 // reading vlc values. Changing these may improve speed and data cache needs 30 // reading vlc values. Changing these may improve speed and data cache needs
25 // be aware though that decreasing them may need the number of stages that is 31 // be aware though that decreasing them may need the number of stages that is
26 // passed to get_vlc* to be increased. 32 // passed to get_vlc* to be increased.