diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-03-17 03:44:14 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-03-17 04:38:28 +0100 |
commit | 3313b9cc2d673f7943ce54a8ca4fd533ed03e286 (patch) | |
tree | 9a0edb6f32919f9b104aac3e13de6a222056e245 /libavcodec/a64multienc.c | |
parent | 286153ea48618fd2287a5e26610729c1f9e83793 (diff) | |
download | ffmpeg-3313b9cc2d673f7943ce54a8ca4fd533ed03e286.tar.gz |
lavc: remove unecessary a64enc include.
Diffstat (limited to 'libavcodec/a64multienc.c')
-rw-r--r-- | libavcodec/a64multienc.c | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/libavcodec/a64multienc.c b/libavcodec/a64multienc.c index 0f6cc7636a..eaf7b46b55 100644 --- a/libavcodec/a64multienc.c +++ b/libavcodec/a64multienc.c @@ -24,7 +24,6 @@ * a64 video encoder - multicolor modes */ -#include "a64enc.h" #include "a64colors.h" #include "a64tables.h" #include "elbg.h" @@ -37,6 +36,31 @@ #define INTERLACED 1 #define CROP_SCREENS 1 +#define C64XRES 320 +#define C64YRES 200 + +typedef struct A64Context { + /* general variables */ + AVFrame picture; + + /* variables for multicolor modes */ + AVLFG randctx; + int mc_lifetime; + int mc_use_5col; + unsigned mc_frame_counter; + int *mc_meta_charset; + int *mc_charmap; + int *mc_best_cb; + int mc_luma_vals[5]; + uint8_t *mc_charset; + uint8_t *mc_colram; + uint8_t *mc_palette; + int mc_pal_size; + + /* pts of the next packet that will be output */ + int64_t next_pts; +} A64Context; + /* gray gradient */ static const int mc_colors[5]={0x0,0xb,0xc,0xf,0x1}; |