ii-vision/transcoder
kris fd49736b71 FrameSequencer:
- Extract out a (File)FrameSequencer class from Video to encapsulate
the generation of still frames.  This also makes Video easier to test.

- Fix FileFrameSequencer.frames() to correctly handle filenames
  containing '.'

- Temporarily switch to the BMP2DHR NTSC palette (#5) for evaluation.

Video:
- Temporarily hardcode DHGR decoding

- Optimize _heapify_priorities() by using numpy to vectorize the
  construction of the list of tuples.  This requires changing the
  random nonce to an int so the intermediate array has a uniform type.

- Use the efficient 28-bit representation of DHGR (aux, main, aux,
  main) tuples introduced in DHGRBitmap to evaluate diffs

- Switch to np.int type for accumulating diffs, and random.randint(0,
  10000) instead of float for nonce values.

- Fix/improve some of the error evaluation in _index_changes:
  - skip offsets whose diffs have already been cleared
  - hoist some stuff out of _compute_error into the parent

- Add some validation that when we run out of work to do with a frame,
  the source and target memory maps should be equal.  This isn't
  happening sometimes, i.e. there is a bug.
2019-06-19 22:02:13 +01:00
..
audio.py Simplify the accounting of audio ticks in video framing, and fix an off-by-one that was causing audio and video to become desynchronized. 2019-06-19 21:47:49 +01:00
colours.py Add a DHGRColours enum mapping the DHGR logical colours to their 2019-06-19 21:54:49 +01:00
edit_distance_test.py
edit_distance.pickle Precompute the edit distance between the 8-bit (2-pixel) and 12-bit 2019-06-19 21:54:52 +01:00
edit_distance.py
machine.py Remove CycleCounter, it's unused 2019-06-19 21:51:45 +01:00
main.py FrameSequencer: 2019-06-19 22:02:13 +01:00
make_data_tables_test.py Precompute the edit distance between the 8-bit (2-pixel) and 12-bit 2019-06-19 21:54:52 +01:00
make_data_tables.py Precompute the edit distance between the 8-bit (2-pixel) and 12-bit 2019-06-19 21:54:52 +01:00
movie.py FrameSequencer: 2019-06-19 22:02:13 +01:00
opcodes_test.py Fix unit test 2019-06-19 21:45:58 +01:00
opcodes.py Add TODO about Opcode.apply being currently unused 2019-06-17 23:46:24 +01:00
palette.py Fix warnings 2019-06-19 21:54:52 +01:00
screen_test.py Remove unused code. 2019-06-19 21:54:52 +01:00
screen.py Remove unused code. 2019-06-19 21:54:52 +01:00
symbol_table_test.py
symbol_table.py
video.py FrameSequencer: 2019-06-19 22:02:13 +01:00