Changes between Version 1 and Version 3 of Ticket #1284


Ignore:
Timestamp:
Jul 11, 2011 4:06:48 AM (13 years ago)
Author:
bennylp
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1284

    • Property Owner changed from nanang to bennylp
    • Property Status changed from new to assigned
    • Property Summary changed from Event mechanism (e.g. format change) to Media event framework
  • Ticket #1284 – Description

    v1 v3  
    1 Any other events? Is this needed? 
     1== Objective == 
    22 
    3 Other events: 
    4  - missing key frame (so app level can request key frame via RTCP or SIP message) 
    5  - ... 
     3 Framework to publish and consume media events in a media flow. The event framework can be used by any media types (audio and video) and any objects. 
    64 
     5== Event Types == 
     6 
     7''' Generic event''' 
     8 
     9All event types carry these information: 
     10 - source 
     11 - timestamp 
     12 
     13 
     14'''Key frame found''' 
     15 
     16||Description: ||notify that a key frame is found|| 
     17||Producer(s): ||codec|| 
     18||Direction: ||decoding|| 
     19||Parameters:|| || 
     20 
     21'''Format change''' 
     22 
     23||Description: ||notify that video format has changed. This includes change in video size. || 
     24||Producer(s): ||codec|| 
     25||Direction: ||decoding|| 
     26||Parameters:|| new format || 
     27 
     28'''Missing key frame''' 
     29 
     30||Description: ||notify that key frame is needed|| 
     31||Producer(s): ||codec|| 
     32||Direction: ||decoding|| 
     33||Parameters:|| || 
     34 
     35'''Video window closed''' 
     36 
     37||Description: ||notify that video window has been closed|| 
     38||Producer(s): ||renderer|| 
     39||Direction: ||decoding|| 
     40||Parameters:|| || 
     41