diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-28 04:12:24 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-28 04:12:24 +0200 |
commit | 7b453d1c60005cd1e0461a8d06d07e89116772d4 (patch) | |
tree | 55f5b363a0f6b5f447026edb8e80b38ef8c22437 /libavcodec/dv_tablegen.h | |
parent | 4a619fcae99c7fc8cae7070c7859243c40cdb4bc (diff) | |
parent | 55abaa58e5ede59d497e1ab89d5fe0950d1c6ecf (diff) | |
download | ffmpeg-7b453d1c60005cd1e0461a8d06d07e89116772d4.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
westwood_vqa: fix SND0 chunk handling
westwood_vqa: set video stream duration
raw: forward avpicture_fill() error code in raw_decode().
build: Do not explicitly add the doc directory to the OBJDIRS list.
dv: Split off DV video decoder into its own file.
build: fix RALF decoder standalone compilation, which depends on Golomb code
configure: Drop stray duplicate entry for --disable-fft from help output.
Conflicts:
libavcodec/dv.c
libavcodec/rawdec.c
libavformat/westwood_vqa.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dv_tablegen.h')
-rw-r--r-- | libavcodec/dv_tablegen.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/dv_tablegen.h b/libavcodec/dv_tablegen.h index 678be73940..9b3e406f6a 100644 --- a/libavcodec/dv_tablegen.h +++ b/libavcodec/dv_tablegen.h @@ -24,6 +24,8 @@ #define AVCODEC_DV_TABLEGEN_H #include <stdint.h> + +#include "libavutil/attributes.h" #include "dv_vlc_data.h" #if CONFIG_SMALL @@ -46,7 +48,7 @@ typedef struct dv_vlc_pair { #else static struct dv_vlc_pair dv_vlc_map[DV_VLC_MAP_RUN_SIZE][DV_VLC_MAP_LEV_SIZE]; -static void dv_vlc_map_tableinit(void) +static void av_unused dv_vlc_map_tableinit(void) { int i, j; for (i = 0; i < NB_DV_VLC - 1; i++) { |