Changes between Version 1 and Version 2 of ReleaseNotes-2.0


Ignore:
Timestamp:
Dec 11, 2010 7:56:59 AM (13 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ReleaseNotes-2.0

    v1 v2  
    1818=== Video === 
    1919 
    20 .. 
     20Assorted features: 
     21 1. Supported video devices: 
     22    - renderer: 
     23      - Simple Direct Media Layer (SDL) (Win32, Mac OS X, Linux, etc.) 
     24    - capture: 
     25      - !QuickTime (MacOS X) 
     26      - iOS (iOS) 
     27      - Video4Linux4 (Linux) 
     28      - !DirectShow (Win32) 
     29      - ffmpeg capture (unfinished) 
     30      - Color bar (all platforms) 
     31 1. Supported codecs: 
     32    - H.263 (with ffmpeg) 
     33 1. video device port to provide timing for video devices (analogous to sound device port) 
     34 1. media format conversion framework (converter.h) supporting multiple backend APIs: 
     35    - ffmpeg's libswscale backend API implementation 
     36 1. video codec framework (vid_codec.h) supporting multiple backend APIs: 
     37    - ffmpeg's libavcodec backend API implementation 
     38 1. AVI file splitter/reader component (aviplayer.h) 
     39 
     40 
     41=== On Demand Media Transport === 
     42 
     43TBD. 
    2144 
    2245 
     
    2447 
    2548== Changes == 
     49 
     50=== Configure script === 
     51 
     52New options: 
     53{{{ 
     54.. 
     55  --disable-sdl           Disable SDL (default: not disabled) 
     56  --disable-ffmpeg        Disable ffmpeg (default: not disabled) 
     57  --disable-v4l2          Disable Video4Linux2 (default: not disabled) 
     58.. 
     59}}} 
     60 
     61New output: 
     62{{{ 
     63.. 
     64checking SDL availability..... 1.2.14 
     65checking for avdevice_version in -lavdevice... yes 
     66checking for av_register_all in -lavformat... yes 
     67checking for avcodec_init in -lavcodec... yes 
     68checking for sws_scale in -lswscale... yes 
     69checking for av_malloc in -lavutil... yes 
     70checking for avcore_version in -lavcore... no 
     71checking for v4l2_open in -lv4l2... yes 
     72.. 
     73}}} 
     74 
    2675 
    2776=== Header Files ===