~ubuntu-branches/ubuntu/lucid/schroedinger/lucid

« back to all changes in this revision

Viewing changes to schroedinger/schrocog.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-04-14 10:58:46 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100414105846-p35xtwwse4bf2xvw
Tags: 1.0.9.is.1.0.8-0ubuntu1
Upload 1.0.8 for lucid since the new version requires orc which is in 
universe and not ready to be promoted yet (the next version will change
the abi and it's still a new technology) (lp: #562735)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __SCHRO_NOTCOG_H__
 
3
#define __SCHRO_NOTCOG_H__
 
4
 
 
5
#include <schroedinger/schroutils.h>
 
6
 
 
7
SCHRO_BEGIN_DECLS
 
8
 
 
9
#ifdef SCHRO_ENABLE_UNSTABLE_API
 
10
 
 
11
void schro_cog_mas8_u8_edgeextend (uint8_t *d, const uint8_t *s,
 
12
    const int16_t *taps, int offset, int shift, int index_offset, int n);
 
13
void schro_cog_mas10_u8_edgeextend (uint8_t *d, const uint8_t *s,
 
14
    const int16_t *taps, int offset, int shift, int index_offset, int n);
 
15
 
 
16
#endif
 
17
 
 
18
SCHRO_END_DECLS
 
19
 
 
20
#endif
 
21