You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.7KB

  1. ffmpeg TODO list:
  2. ----------------
  3. Fabrice's TODO list: (unordered)
  4. -------------------
  5. Short term:
  6. - av_read_frame() API
  7. - seeking API and example in ffplay
  8. - parse_only mode
  9. - use AVFMTCTX_DISCARD_PKT in ffplay so that DV has a chance to work
  10. - fix windows compile
  11. - add man page
  12. - make ffserver allocate AVFormatContext
  13. - clean up (incompatible change, for 0.5.0):
  14. * AVStream -> AVComponent
  15. * AVFormatContext -> AVInputStream/AVOutputStream
  16. * CODEC_ID_MP3LAME and CODEC_ID_MP2 -> CODEC_ID_MPEGAUDIO
  17. - add av_log() in libavcodec and suppress all printf
  18. - add new float/integer audio filterting and conversion : suppress
  19. CODEC_ID_PCM_xxc and use CODEC_ID_RAWAUDIO.
  20. - fix telecine and frame rate conversion
  21. Long term (ask me if you want to help):
  22. - commit new imgconvert API and new PIX_FMT_xxx alpha formats
  23. - commit new LGPL'ed float and integer-only AC3 decoder
  24. - add WMA integer-only decoder
  25. - integrate custom Vorbis Tremor based integer and float decoder
  26. - add new MPEG4-AAC audio decoder (both integer-only and float version)
  27. Michael's TODO list: (unordered) (if anyone wanna help with sth, just ask)
  28. -------------------
  29. - finish implementation of WMV2 j-picture
  30. - H264 encoder
  31. - H264 deblock filter
  32. - H264 B frames
  33. - H264 CABAC
  34. - per MB ratecontrol (so VCD and such do work better)
  35. - more optimizations
  36. - simper rate control
  37. - split h263.c
  38. - mpeg2 encoding (after the ME impovements)
  39. - format idependant quality parameter
  40. Francois' TODO list: (unordered, without any timeframe)
  41. -------------------
  42. - test MACE decoder against the openquicktime one as suggested by A'rpi
  43. - mov/mp4 muxer
  44. - BeOS audio input grabbing backend
  45. - BeOS video input grabbing backend
  46. - have a REAL BeOS errno fix (return MKERROR(EXXX);), not a hack
  47. - publish my BeOS libposix on BeBits so I can officially support ffserver :)
  48. - check the whole code for thread-safety (global and init stuff)
  49. Philip'a TODO list: (alphabetically ordered) (please help)
  50. ------------------
  51. - Add a multi-ffm filetype so that feeds can be recorded into multiple files rather
  52. than one big file.
  53. - Authenticated users support -- where the authentication is in the URL
  54. - Change ASF files so that the embedded timestamp in the frames is right rather
  55. than being an offset from the start of the stream
  56. - Make ffm files more resilient to changes in the codec structures so that you
  57. can play old ffm files.
  58. unassigned TODO: (stuff which should/must be done but noone seems to do it)
  59. ---------------
  60. - use AVFrame for audio codecs too
  61. - H264 interlacing
  62. - rework aviobuf.c buffering strategy and fix url_fskip
  63. - do audio resampling with bandlimited interpolation:
  64. http://ccrma-www.stanford.edu/~jos/resample/resample.html
  65. - add seeking support to the command line
  66. - generate optimal huffman tables for mjpeg encoding