aboutsummaryrefslogtreecommitdiff
path: root/lib/libmpeg2/TODO
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libmpeg2/TODO')
-rw-r--r--lib/libmpeg2/TODO37
1 files changed, 0 insertions, 37 deletions
diff --git a/lib/libmpeg2/TODO b/lib/libmpeg2/TODO
deleted file mode 100644
index 25f729555d..0000000000
--- a/lib/libmpeg2/TODO
+++ /dev/null
@@ -1,37 +0,0 @@
-* plain bugs
- * fix VIS IDCT code (handling of nonprogressive frame pictures)
-
-* things we dont implement yet
- * more verbose error reporting
- * export MC information (for XvMC or for error resilience)
- * export quantizer information (for postprocessing filters)
- * dont crash on bad streams, make sure we can resync after a while
- * possible chunk buffer overflow while reading bits
- * synchronization stuff (play at correct speed)
- * IDCT precision with sparse matrixes
- * sparc IDCT optimizations
- * support for still pictures (decode before receiving next startcode !)
-
-* structural optimizations
- * do yuv per sub-slice (probably big speed boost)
- * try different memory arrangements for pictures (yuyv, stride, ...)
- * once we have sync, call draw_frame before decoding I or P not after
-
-* local optimizations
- * put most common fields at start of decoder_t structure
- * fix code that uses multiples of the stride (use preshifted value ?)
- * avoid 8-bit accesses particularly on alpha
- * use 64-bit shift register for parsing on 64-bit arches
- * use restrict (__restrict__) pointers: int * restrict p;
- * try feig IDCT ?
- * review the use of static inline functions
- * improve MMX motion comp inner routines
- * optimize IDCT for very sparse input matrixes ?
- * optimize startcode search loop ?
- * bit parsing / DCT parsing optimizations
-
-* clean up
- * clean up header file usage
- * clean up yuv2rgb for interlaced pictures (handling of uv)
- * clean up decoder_t structure (some variables should be local ?)
- * clean up slice_init