Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
cd832f03
Commit
cd832f03
authored
Feb 24, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffv1: Drop bogus dependency on dsputil
ffv1 does not use any part of the dsputil framework.
parent
0e29c5e1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
7 deletions
+2
-7
configure
configure
+2
-2
ffv1.c
libavcodec/ffv1.c
+0
-2
ffv1.h
libavcodec/ffv1.h
+0
-3
No files found.
configure
View file @
cd832f03
...
@@ -1689,8 +1689,8 @@ eac3_encoder_select="ac3_encoder"
...
@@ -1689,8 +1689,8 @@ eac3_encoder_select="ac3_encoder"
eamad_decoder_select
=
"aandcttables dsputil mpegvideo"
eamad_decoder_select
=
"aandcttables dsputil mpegvideo"
eatgq_decoder_select
=
"aandcttables dsputil"
eatgq_decoder_select
=
"aandcttables dsputil"
eatqi_decoder_select
=
"aandcttables error_resilience mpegvideo"
eatqi_decoder_select
=
"aandcttables error_resilience mpegvideo"
ffv1_decoder_select
=
"
dsputil
golomb rangecoder"
ffv1_decoder_select
=
"golomb rangecoder"
ffv1_encoder_select
=
"
dsputil
rangecoder"
ffv1_encoder_select
=
"rangecoder"
ffvhuff_decoder_select
=
"huffyuv_decoder"
ffvhuff_decoder_select
=
"huffyuv_decoder"
ffvhuff_encoder_select
=
"huffyuv_encoder"
ffvhuff_encoder_select
=
"huffyuv_encoder"
fic_decoder_select
=
"dsputil golomb"
fic_decoder_select
=
"dsputil golomb"
...
...
libavcodec/ffv1.c
View file @
cd832f03
...
@@ -141,8 +141,6 @@ av_cold int ffv1_common_init(AVCodecContext *avctx)
...
@@ -141,8 +141,6 @@ av_cold int ffv1_common_init(AVCodecContext *avctx)
if
(
!
avctx
->
width
||
!
avctx
->
height
)
if
(
!
avctx
->
width
||
!
avctx
->
height
)
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
ff_dsputil_init
(
&
s
->
dsp
,
avctx
);
s
->
width
=
avctx
->
width
;
s
->
width
=
avctx
->
width
;
s
->
height
=
avctx
->
height
;
s
->
height
=
avctx
->
height
;
...
...
libavcodec/ffv1.h
View file @
cd832f03
...
@@ -26,7 +26,6 @@
...
@@ -26,7 +26,6 @@
#include <stdint.h>
#include <stdint.h>
#include "avcodec.h"
#include "avcodec.h"
#include "dsputil.h"
#include "get_bits.h"
#include "get_bits.h"
#include "put_bits.h"
#include "put_bits.h"
#include "rangecoder.h"
#include "rangecoder.h"
...
@@ -106,8 +105,6 @@ typedef struct FFV1Context {
...
@@ -106,8 +105,6 @@ typedef struct FFV1Context {
int
gob_count
;
int
gob_count
;
int
quant_table_count
;
int
quant_table_count
;
DSPContext
dsp
;
struct
FFV1Context
*
slice_context
[
MAX_SLICES
];
struct
FFV1Context
*
slice_context
[
MAX_SLICES
];
int
slice_count
;
int
slice_count
;
int
num_v_slices
;
int
num_v_slices
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment