Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-01 20:16:32 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-05-01 20:16:32 +0400
commit04fa81877913798bf4badfa472c8653219f2aeb1 (patch)
tree875c341ee83d0b4916b59a40fad7e4a58c9aeac4 /libavcodec/mlpdsp.c
parentcae8f469fee7c32685f04a2b507251119d6875ef (diff)
parent088f38a4f9f54bb923405c67c9e72d96d90aa284 (diff)
Merge commit '088f38a4f9f54bb923405c67c9e72d96d90aa284'
* commit '088f38a4f9f54bb923405c67c9e72d96d90aa284': avcodec: Drop unnecessary ff_ name prefixes from static functions Conflicts: libavcodec/ass.c libavcodec/h264_parser.c libavcodec/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mlpdsp.c')
-rw-r--r--libavcodec/mlpdsp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/mlpdsp.c b/libavcodec/mlpdsp.c
index 9a376e2206..6d379d5cc3 100644
--- a/libavcodec/mlpdsp.c
+++ b/libavcodec/mlpdsp.c
@@ -23,10 +23,10 @@
#include "mlpdsp.h"
#include "mlp.h"
-static void ff_mlp_filter_channel(int32_t *state, const int32_t *coeff,
- int firorder, int iirorder,
- unsigned int filter_shift, int32_t mask, int blocksize,
- int32_t *sample_buffer)
+static void mlp_filter_channel(int32_t *state, const int32_t *coeff,
+ int firorder, int iirorder,
+ unsigned int filter_shift, int32_t mask,
+ int blocksize, int32_t *sample_buffer)
{
int32_t *firbuf = state;
int32_t *iirbuf = state + MAX_BLOCKSIZE + MAX_FIR_ORDER;
@@ -58,7 +58,7 @@ static void ff_mlp_filter_channel(int32_t *state, const int32_t *coeff,
void ff_mlpdsp_init(MLPDSPContext *c)
{
- c->mlp_filter_channel = ff_mlp_filter_channel;
+ c->mlp_filter_channel = mlp_filter_channel;
if (ARCH_X86)
ff_mlpdsp_init_x86(c);
}