From 650dee63c8b1e6693c6cf5983f4a5ed3f571379f Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 18 Jun 2014 10:59:37 +0200 Subject: dv: get rid of global non-const tables Instead, store them in the context and compute on each parameter change. --- libavcodec/dv_profile.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'libavcodec/dv_profile.h') diff --git a/libavcodec/dv_profile.h b/libavcodec/dv_profile.h index c6d2278b0d..9cf58a0bb5 100644 --- a/libavcodec/dv_profile.h +++ b/libavcodec/dv_profile.h @@ -25,11 +25,6 @@ #include "libavutil/rational.h" #include "avcodec.h" -typedef struct DVwork_chunk { - uint16_t buf_offset; - uint16_t mb_coordinates[5]; -} DVwork_chunk; - /* * DVprofile is used to express the differences between various * DV flavors. For now it's primarily used for differentiating @@ -47,8 +42,6 @@ typedef struct DVprofile { int height; /* picture height in pixels */ int width; /* picture width in pixels */ AVRational sar[2]; /* sample aspect ratios for 4:3 and 16:9 */ - DVwork_chunk *work_chunks; /* each thread gets its own chunk of frame to work on */ - uint32_t *idct_factor; /* set of iDCT factor tables */ enum AVPixelFormat pix_fmt; /* picture pixel format */ int bpm; /* blocks per macroblock */ const uint8_t *block_sizes; /* AC block sizes, in bits */ -- cgit v1.2.3