Wireshark-commits: [Wireshark-commits] master 2bf7878: Qt: Add the RTP Streams dialog.

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Fri, 30 Jan 2015 06:48:36 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=2bf7878e8a7455fe656bb07e9a7d42e6ac4d87fd
Submitter: Gerald Combs (gerald@xxxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

2bf7878 by Gerald Combs (gerald@xxxxxxxxxxxxx):

    Qt: Add the RTP Streams dialog.
    
    Add keyboard shortcuts. Note that not all of the buttons made it from
    GTK+.  Add a "Go to setup frame" option.
    
    Move rtp_streams.c from ui/gtk to ui.
    
    Add a help URL for RTP analysis (which needs to be split into streams +
    analysis).
    
    Fix RTP stream packet marking.
    
    Change-Id: Ifb8192ff701a933422509233d76461a46e459f4f
    Reviewed-on: https://code.wireshark.org/review/6852
    Petri-Dish: Gerald Combs <gerald@xxxxxxxxxxxxx>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@xxxxxxxxxxxxx>
    Reviewed-by: Gerald Combs <gerald@xxxxxxxxxxxxx>
    

Actions performed:

    from  6824cee    CAPWAP: Add support of Cisco Vendor Specific Element
    adds  2bf7878   Qt: Add the RTP Streams dialog.


Summary of changes:
 epan/rtp_pt.h                                      |   21 +
 ui/CMakeLists.txt                                  |    7 +
 ui/Makefile.common                                 |    1 +
 ui/cli/tap-rtp.c                                   |    4 +-
 ui/gtk/CMakeLists.txt                              |    1 -
 ui/gtk/Makefile.common                             |    1 -
 ui/gtk/iax2_analysis.c                             |    4 +-
 ui/gtk/rtp_analysis.c                              |    4 +-
 ui/gtk/rtp_stream_dlg.c                            |   84 +--
 ui/gtk/rtp_stream_dlg.h                            |   10 +-
 ui/help_url.c                                      |    3 +
 ui/help_url.h                                      |    3 +-
 ui/qt/CMakeLists.txt                               |    5 +-
 ui/qt/Makefile.am                                  |    2 +
 ui/qt/Makefile.common                              |    4 +
 ui/qt/Wireshark.pro                                |    3 +
 ui/qt/main_window.h                                |    1 +
 ui/qt/main_window.ui                               |   12 +
 ui/qt/main_window_slots.cpp                        |   13 +
 ui/qt/packet_list.cpp                              |    1 -
 ui/qt/rtp_stream_dialog.cpp                        |  636 ++++++++++++++++++++
 ui/qt/{voip_calls_dialog.h => rtp_stream_dialog.h} |   82 ++-
 ui/qt/rtp_stream_dialog.ui                         |  246 ++++++++
 ui/qt/syntax_line_edit.cpp                         |    6 +-
 ui/qt/traffic_table_dialog.cpp                     |    3 +
 ui/qt/wireshark_dialog.h                           |    1 +
 ui/{gtk => }/rtp_stream.c                          |  147 +++--
 ui/rtp_stream.h                                    |   52 +-
 ui/tap-rtp-common.c                                |   12 +-
 ui/tap-rtp-common.h                                |    1 -
 ui/utf8_entities.h                                 |    1 +
 31 files changed, 1192 insertions(+), 179 deletions(-)
 create mode 100644 ui/qt/rtp_stream_dialog.cpp
 copy ui/qt/{voip_calls_dialog.h => rtp_stream_dialog.h} (51%)
 create mode 100644 ui/qt/rtp_stream_dialog.ui
 rename ui/{gtk => }/rtp_stream.c (54%)