File: TODO

package info (click to toggle)
sbc 1.1-2~bpo7%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 1,616 kB
  • sloc: sh: 11,090; ansic: 4,910; makefile: 46
file content (49 lines) | stat: -rw-r--r-- 1,680 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Background
==========

- Priority scale: High, Medium and Low

- Complexity scale: C1, C2, C4 and C8.  The complexity scale is exponential,
  with complexity 1 being the lowest complexity.  Complexity is a function
  of both task 'complexity' and task 'scope'.

  The general rule of thumb is that a complexity 1 task should take 1-2 weeks
  for a person very familiar with oFono codebase.  Higher complexity tasks
  require more time and have higher uncertainty.

  Higher complexity tasks should be refined into several lower complexity tasks
  once the task is better understood.

NEON instruction set
====================

- The neon optimization code is split in two parts. Sample reordering and blocks
encoding. There is a neon optimization for encoding SBC. But mSBC is not
supported by this optimizer because the reordering has been specifically for
mSBC.

  Priority: Low
  Complexity: C2

SSE instruction set
===================

- The decoder is optimized to take advantage of advanced processor instruction
sets. Currently implemented are MMX, arm neon, arm v6 and iwmmxt. SSE3 is
is available since almost 10 years now, on a large range of Intel processors.
It should be interesting to implement it and to compare with MMX implementation
on Intel processors.

  Priority: Medium
  Complexity: C4

Decoder improvements
====================

- Currently, only the decoder is optimized to take advantage of advanced
processor instruction sets. In use cases like HFP 1.6, optimizing the encoder
will bring a significant latency, power and performance advantage. For exemple,
the MMX encoder is 3 to 6 time faster than the SIMD encoder.

  Priority: High
  Complexity: C8