Browse Source

Merge commit 'cd832f032f945a57a1f1dd385942c2fadc7ce4e5'

* commit 'cd832f032f945a57a1f1dd385942c2fadc7ce4e5':
  ffv1: Drop bogus dependency on dsputil

Conflicts:
	configure
	libavcodec/ffv1.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
daded4f89a
3 changed files with 2 additions and 7 deletions
  1. +2
    -2
      configure
  2. +0
    -2
      libavcodec/ffv1.c
  3. +0
    -3
      libavcodec/ffv1.h

+ 2
- 2
configure View File

@@ -1947,8 +1947,8 @@ eamad_decoder_select="aandcttables dsputil mpegvideo"
eatgq_decoder_select="aandcttables"
eatqi_decoder_select="aandcttables error_resilience mpegvideo"
exr_decoder_select="zlib"
ffv1_decoder_select="dsputil golomb rangecoder"
ffv1_encoder_select="dsputil rangecoder"
ffv1_decoder_select="golomb rangecoder"
ffv1_encoder_select="rangecoder"
ffvhuff_decoder_select="huffyuv_decoder"
ffvhuff_encoder_select="huffyuv_encoder"
fic_decoder_select="dsputil golomb"


+ 0
- 2
libavcodec/ffv1.c View File

@@ -54,8 +54,6 @@ av_cold int ffv1_common_init(AVCodecContext *avctx)
if (!s->picture.f || !s->last_picture.f)
return AVERROR(ENOMEM);

ff_dsputil_init(&s->dsp, avctx);

s->width = avctx->width;
s->height = avctx->height;



+ 0
- 3
libavcodec/ffv1.h View File

@@ -35,7 +35,6 @@
#include "libavutil/pixdesc.h"
#include "libavutil/timer.h"
#include "avcodec.h"
#include "dsputil.h"
#include "get_bits.h"
#include "internal.h"
#include "mathops.h"
@@ -116,8 +115,6 @@ typedef struct FFV1Context {
int gob_count;
int quant_table_count;

DSPContext dsp;

struct FFV1Context *slice_context[MAX_SLICES];
int slice_count;
int num_v_slices;


Loading…
Cancel
Save