File: HACKING

package info (click to toggle)
cortado 0.2.2-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,232 kB
  • ctags: 2,515
  • sloc: java: 17,356; xml: 532; sh: 58; makefile: 15
file content (65 lines) | stat: -rw-r--r-- 2,195 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
HACKING NOTES for Cortado
-------------------------

directory layout:

- src:             source code
  - com/jcraft:    copy of JCraft JOgg and Jorbis source code, plus some changes
  - com/fluendo:   Source code written by Fluendo
    - utils:       utitity classes used by jst, jheora, examples
    - jst:         a java port of the GStreamer 0.10 design
    - jheora:      a java implementation of the Theora video codec
    - codecs:      additional codecs; currently contains the Smoke codec
    - plugin:      plugins implementing/wrapping sources/decoders/sinks
    - examples:    example programs

- stubs:           stubs that contain minimal definitions for other classes
                   to allow compilation
  - sun/audio:     stubs for sun.audio.*
  - javax/sound:
    - sampled:     stubs for javax.sound.sampled.*

- output:          files generated as part of the build
  - build:         built class files
    - debug:       debug build
    - release:     release build
  - dist:          resulting jar files
    - debug:       debug versions of all cortado .jars
    - release:     release versions of all cortado .jars
    - applets:     all applet jars
    - src:         source distributions


NOTES
-----
- from the ant build file, we should be able to:
  - make a tarball with all the source and build stuff:
    "ant dist" (done)
  - generate the separate jars
    "ant jar-jcraft ..."
  - build the examples
  - generate stripped and debug versions of the applets, with specific plugins
    included
    "ant applets" or "ant applet-ovt applet-mmjs"
    "ant applets-debug"

- the plan is to:
  - build com.fluendo.utils in a jar
  - build com.jcraft in a jar
  - build com.fluendo.jheora in a jar (relying on jcraft and utils jars)
  - build com.fluendo.jst in a jar (relying on utils)
  - build com.fluendo.plugin into a jar (all combined, relying on all above)

- FIXME: what to do with the examples ?

HISTORY
------

- applet sizes:
  - cortado ovt debug:
    - 2006-05-19: 259354 bytes

  - cortado ovt stripped:
    - 0.1.2.1, 2005-04-29: 179327 bytes
    - 0.1.2.1, 2006-01-17: 191901 bytes (after JST implementation)
    - 0.2.0,   2006-05-19: 189596 bytes