Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ffmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Luma Media Server
ffmpeg
Commits
cae8df78
Commit
cae8df78
authored
10 years ago
by
Janne Grunau
Browse files
Options
Downloads
Patches
Plain Diff
lavr: define ResampleContext in resample.h
Required for arch optimized resampling.
parent
a88e1d1c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavresample/resample.c
+0
-29
0 additions, 29 deletions
libavresample/resample.c
libavresample/resample.h
+29
-0
29 additions, 0 deletions
libavresample/resample.h
with
29 additions
and
29 deletions
libavresample/resample.c
+
0
−
29
View file @
cae8df78
...
@@ -26,35 +26,6 @@
...
@@ -26,35 +26,6 @@
#include
"resample.h"
#include
"resample.h"
#include
"audio_data.h"
#include
"audio_data.h"
struct
ResampleContext
{
AVAudioResampleContext
*
avr
;
AudioData
*
buffer
;
uint8_t
*
filter_bank
;
int
filter_length
;
int
ideal_dst_incr
;
int
dst_incr
;
unsigned
int
index
;
int
frac
;
int
src_incr
;
int
compensation_distance
;
int
phase_shift
;
int
phase_mask
;
int
linear
;
enum
AVResampleFilterType
filter_type
;
int
kaiser_beta
;
void
(
*
set_filter
)(
void
*
filter
,
double
*
tab
,
int
phase
,
int
tap_count
);
void
(
*
resample_one
)(
struct
ResampleContext
*
c
,
void
*
dst0
,
int
dst_index
,
const
void
*
src0
,
unsigned
int
index
,
int
frac
);
void
(
*
resample_nearest
)(
void
*
dst0
,
int
dst_index
,
const
void
*
src0
,
unsigned
int
index
);
int
padding_size
;
int
initial_padding_filled
;
int
initial_padding_samples
;
int
final_padding_filled
;
int
final_padding_samples
;
};
/* double template */
/* double template */
#define CONFIG_RESAMPLE_DBL
#define CONFIG_RESAMPLE_DBL
...
...
This diff is collapsed.
Click to expand it.
libavresample/resample.h
+
29
−
0
View file @
cae8df78
...
@@ -25,6 +25,35 @@
...
@@ -25,6 +25,35 @@
#include
"internal.h"
#include
"internal.h"
#include
"audio_data.h"
#include
"audio_data.h"
struct
ResampleContext
{
AVAudioResampleContext
*
avr
;
AudioData
*
buffer
;
uint8_t
*
filter_bank
;
int
filter_length
;
int
ideal_dst_incr
;
int
dst_incr
;
unsigned
int
index
;
int
frac
;
int
src_incr
;
int
compensation_distance
;
int
phase_shift
;
int
phase_mask
;
int
linear
;
enum
AVResampleFilterType
filter_type
;
int
kaiser_beta
;
void
(
*
set_filter
)(
void
*
filter
,
double
*
tab
,
int
phase
,
int
tap_count
);
void
(
*
resample_one
)(
struct
ResampleContext
*
c
,
void
*
dst0
,
int
dst_index
,
const
void
*
src0
,
unsigned
int
index
,
int
frac
);
void
(
*
resample_nearest
)(
void
*
dst0
,
int
dst_index
,
const
void
*
src0
,
unsigned
int
index
);
int
padding_size
;
int
initial_padding_filled
;
int
initial_padding_samples
;
int
final_padding_filled
;
int
final_padding_samples
;
};
/**
/**
* Allocate and initialize a ResampleContext.
* Allocate and initialize a ResampleContext.
*
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment