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
caee85bb
Commit
caee85bb
authored
Jan 06, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/kerndeint: remove unused pixel_step.
parent
f6659e5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
vf_kerndeint.c
libavfilter/vf_kerndeint.c
+0
-2
No files found.
libavfilter/vf_kerndeint.c
View file @
caee85bb
...
@@ -42,7 +42,6 @@ typedef struct {
...
@@ -42,7 +42,6 @@ typedef struct {
int
vsub
;
int
vsub
;
uint8_t
*
tmp_data
[
4
];
///< temporary plane data buffer
uint8_t
*
tmp_data
[
4
];
///< temporary plane data buffer
int
tmp_bwidth
[
4
];
///< temporary plane byte width
int
tmp_bwidth
[
4
];
///< temporary plane byte width
int
pixel_step
;
}
KerndeintContext
;
}
KerndeintContext
;
#define OFFSET(x) offsetof(KerndeintContext, x)
#define OFFSET(x) offsetof(KerndeintContext, x)
...
@@ -101,7 +100,6 @@ static int config_props(AVFilterLink *inlink)
...
@@ -101,7 +100,6 @@ static int config_props(AVFilterLink *inlink)
int
ret
;
int
ret
;
kerndeint
->
vsub
=
desc
->
log2_chroma_h
;
kerndeint
->
vsub
=
desc
->
log2_chroma_h
;
kerndeint
->
pixel_step
=
av_get_bits_per_pixel
(
desc
)
>>
3
;
ret
=
av_image_alloc
(
kerndeint
->
tmp_data
,
kerndeint
->
tmp_bwidth
,
ret
=
av_image_alloc
(
kerndeint
->
tmp_data
,
kerndeint
->
tmp_bwidth
,
inlink
->
w
,
inlink
->
h
,
inlink
->
format
,
1
);
inlink
->
w
,
inlink
->
h
,
inlink
->
format
,
1
);
...
...
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