info_panels.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:20k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * infopanels.cpp : Panels for the information dialogs
  3.  ****************************************************************************
  4.  * Copyright (C) 2006-2007 the VideoLAN team
  5.  * $Id: 98bd70791b2512545f3289eb482e05472bc35879 $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@videolan.org>
  8.  *          Jean-Baptiste Kempf <jb@videolan.org>
  9.  *          Ilkka Ollakka <ileoo@videolan.org>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #include "qt4.hpp"
  29. #include "components/info_panels.hpp"
  30. #include "components/interface_widgets.hpp"
  31. #include <assert.h>
  32. #include <QTreeWidget>
  33. #include <QHeaderView>
  34. #include <QList>
  35. #include <QStringList>
  36. #include <QGridLayout>
  37. #include <QLineEdit>
  38. #include <QLabel>
  39. #include <QSpinBox>
  40. /************************************************************************
  41.  * Single panels
  42.  ************************************************************************/
  43. /**
  44.  * First Panel - Meta Info
  45.  * All the usual MetaData are displayed and can be changed.
  46.  **/
  47. MetaPanel::MetaPanel( QWidget *parent,
  48.                       intf_thread_t *_p_intf )
  49.                       : QWidget( parent ), p_intf( _p_intf )
  50. {
  51.     QGridLayout *metaLayout = new QGridLayout( this );
  52.     int line = 0; /* Counter for GridLayout */
  53.     p_input = NULL;
  54. #define ADD_META( string, widget ) {                                      
  55.     metaLayout->addWidget( new QLabel( qtr( string ) + " :" ), line, 0 ); 
  56.     widget = new QLineEdit;                                               
  57.     metaLayout->addWidget( widget, line, 1, 1, 9 );                       
  58.     line++;            }
  59.     /* Title, artist and album*/
  60.     ADD_META( VLC_META_TITLE, title_text ); /* OK */
  61.     ADD_META( VLC_META_ARTIST, artist_text ); /* OK */
  62.     ADD_META( VLC_META_ALBUM, collection_text ); /* OK */
  63.     /* Genre Name */
  64.     /* TODO List id3genres.h is not includable yet ? */
  65.     genre_text = new QLineEdit;
  66.     metaLayout->addWidget( new QLabel( qtr( VLC_META_GENRE ) + " :" ), line, 0 );
  67.     metaLayout->addWidget( genre_text, line, 1, 1, 3 );
  68.     /* Number - on the same line */
  69.     metaLayout->addWidget( new QLabel( qtr( VLC_META_TRACK_NUMBER )  + " :" ),
  70.                   line, 5, 1, 2  );
  71.     seqnum_text = new QLineEdit;
  72.     seqnum_text->setInputMask("0000");
  73.     seqnum_text->setAlignment( Qt::AlignRight );
  74.     metaLayout->addWidget( seqnum_text, line, 7, 1, 3 );
  75.     line++;
  76.     /* Date (Should be in years) */
  77.     date_text = new QLineEdit;
  78.     date_text->setInputMask("0000");
  79.     date_text->setAlignment( Qt::AlignRight );
  80.     metaLayout->addWidget( new QLabel( qtr( VLC_META_DATE ) + " :" ), line, 0 );
  81.     metaLayout->addWidget( date_text, line, 1, 1, 3 );
  82.     /* Rating - on the same line */
  83.     /*
  84.     metaLayout->addWidget( new QLabel( qtr( VLC_META_RATING ) + " :" ), line, 4, 1, 2 );
  85.     rating_text = new QSpinBox; setSpinBounds( rating_text );
  86.     metaLayout->addWidget( rating_text, line, 6, 1, 1 );
  87.     */
  88.     /* Language on the same line */
  89.     metaLayout->addWidget( new QLabel( qfu( VLC_META_LANGUAGE ) + " :" ), line, 5, 1, 2 );
  90.     language_text = new QLineEdit;
  91.     language_text->setReadOnly( true );
  92.     metaLayout->addWidget( language_text, line,  7, 1, 3 );
  93.     line++;
  94.     /* ART_URL */
  95.     art_cover = new CoverArtLabel( this, p_intf );
  96.     metaLayout->addWidget( art_cover, line, 8, 4, 2, Qt::AlignRight );
  97. /* Settings is unused */
  98. /*    l->addWidget( new QLabel( qtr( VLC_META_SETTING ) + " :" ), line, 5 );
  99.     setting_text = new QLineEdit;
  100.     l->addWidget( setting_text, line, 6, 1, 4 ); */
  101. /* Less used metadata */
  102. #define ADD_META_2( string, widget ) {                                    
  103.     metaLayout->addWidget( new QLabel( qtr( string ) + " :" ), line, 0 ); 
  104.     widget = new QLineEdit;                                               
  105.     metaLayout->addWidget( widget, line, 1, 1, 7 );                       
  106.     line++;            }
  107.     /* Now Playing - Useful for live feeds (HTTP, DVB, ETC...) */
  108.     ADD_META_2( VLC_META_NOW_PLAYING, nowplaying_text );
  109.     nowplaying_text->setReadOnly( true );
  110.     ADD_META_2( VLC_META_PUBLISHER, publisher_text );
  111.     ADD_META_2( VLC_META_COPYRIGHT, copyright_text );
  112.     ADD_META_2( N_("Comments"), description_text );
  113. /* useless metadata */
  114.     //ADD_META_2( VLC_META_ENCODED_BY, encodedby_text );
  115.     /*  ADD_META( TRACKID )  Useless ? */
  116.     /*  ADD_URI - DO not show it, done outside */
  117.     metaLayout->setColumnStretch( 1, 2 );
  118.     metaLayout->setColumnMinimumWidth ( 1, 80 );
  119. #undef ADD_META
  120. #undef ADD_META_2
  121.     CONNECT( title_text, textEdited( QString ), this, enterEditMode() );
  122.     CONNECT( artist_text, textEdited( QString ), this, enterEditMode() );
  123.     CONNECT( collection_text, textEdited( QString ), this, enterEditMode() );
  124.     CONNECT( genre_text, textEdited( QString ), this, enterEditMode() );
  125.     CONNECT( seqnum_text, textEdited( QString ), this, enterEditMode() );
  126.     CONNECT( date_text, textEdited( QString ), this, enterEditMode() );
  127.     CONNECT( description_text, textEdited( QString ), this, enterEditMode() );
  128. /*    CONNECT( rating_text, valueChanged( QString ), this, enterEditMode( QString ) );*/
  129.     /* We are not yet in Edit Mode */
  130.     b_inEditMode = false;
  131. }
  132. /**
  133.  * Update all the MetaData and art on an "item-changed" event
  134.  **/
  135. void MetaPanel::update( input_item_t *p_item )
  136. {
  137.     if( !p_item )
  138.     {
  139.         clear();
  140.         return;
  141.     }
  142.     /* Don't update if you are in edit mode */
  143.     if( b_inEditMode ) return;
  144.     else p_input = p_item;
  145.     char *psz_meta;
  146. #define UPDATE_META( meta, widget ) {               
  147.     psz_meta = input_item_Get##meta( p_item );      
  148.     if( !EMPTY_STR( psz_meta ) )                    
  149.         widget->setText( qfu( psz_meta ) );         
  150.     else                                            
  151.         widget->setText( "" ); }                    
  152.     free( psz_meta );
  153. #define UPDATE_META_INT( meta, widget ) {           
  154.     psz_meta = input_item_Get##meta( p_item );      
  155.     if( !EMPTY_STR( psz_meta ) )                    
  156.         widget->setValue( atoi( psz_meta ) ); }     
  157.     free( psz_meta );
  158.     /* Name / Title */
  159.     psz_meta = input_item_GetTitleFbName( p_item );
  160.     if( psz_meta )
  161.     {
  162.         title_text->setText( qfu( psz_meta ) );
  163.         free( psz_meta );
  164.     }
  165.     else
  166.         title_text->setText( "" );
  167.     /* URL / URI */
  168.     psz_meta = input_item_GetURL( p_item );
  169.     if( !EMPTY_STR( psz_meta ) )
  170.         emit uriSet( qfu( psz_meta ) );
  171.     else
  172.     {
  173.         free( psz_meta );
  174.         psz_meta = input_item_GetURI( p_item );
  175.         if( !EMPTY_STR( psz_meta ) )
  176.             emit uriSet( qfu( psz_meta ) );
  177.     }
  178.     free( psz_meta );
  179.     /* Other classic though */
  180.     UPDATE_META( Artist, artist_text );
  181.     UPDATE_META( Genre, genre_text );
  182.     UPDATE_META( Copyright, copyright_text );
  183.     UPDATE_META( Album, collection_text );
  184.     UPDATE_META( Description, description_text );
  185.     UPDATE_META( Language, language_text );
  186.     UPDATE_META( NowPlaying, nowplaying_text );
  187.     UPDATE_META( Publisher, publisher_text );
  188. //    UPDATE_META( Setting, setting_text );
  189. //FIXME this is wrong if has Publisher and EncodedBy fields
  190.     UPDATE_META( EncodedBy, publisher_text );
  191.     UPDATE_META( Date, date_text );
  192.     UPDATE_META( TrackNum, seqnum_text );
  193. //    UPDATE_META_INT( Rating, rating_text );
  194. #undef UPDATE_META_INT
  195. #undef UPDATE_META
  196. }
  197. /**
  198.  * Save the MetaData, triggered by parent->save Button
  199.  **/
  200. void MetaPanel::saveMeta()
  201. {
  202.     playlist_t *p_playlist;
  203.     meta_export_t p_export;
  204.     p_export.p_item = p_input;
  205.     if( p_input == NULL )
  206.         return;
  207.     /* we can write meta data only in a file */
  208.     vlc_mutex_lock( &p_input->lock );
  209.     int i_type = p_input->i_type;
  210.     vlc_mutex_unlock( &p_input->lock );
  211.     if( i_type == ITEM_TYPE_FILE )
  212.     {
  213.         char *psz_uri_orig = input_item_GetURI( p_input );
  214.         char *psz_uri = psz_uri_orig;
  215.         if( !strncmp( psz_uri, "file://", 7 ) )
  216.             psz_uri += 7; /* strlen("file://") = 7 */
  217.         p_export.psz_file = strndup( psz_uri, PATH_MAX );
  218.         free( psz_uri_orig );
  219.     }
  220.     else
  221.         return;
  222.     /* now we read the modified meta data */
  223.     input_item_SetTitle(  p_input, qtu( title_text->text() ) );
  224.     input_item_SetArtist( p_input, qtu( artist_text->text() ) );
  225.     input_item_SetAlbum(  p_input, qtu( collection_text->text() ) );
  226.     input_item_SetGenre(  p_input, qtu( genre_text->text() ) );
  227.     input_item_SetTrackNum(  p_input, qtu( seqnum_text->text() ) );
  228.     input_item_SetDate(  p_input, qtu( date_text->text() ) );
  229.     input_item_SetCopyright( p_input, qtu( copyright_text->text() ) );
  230.     input_item_SetPublisher( p_input, qtu( publisher_text->text() ) );
  231.     input_item_SetDescription( p_input, qtu( description_text->text() ) );
  232.     p_playlist = pl_Hold( p_intf );
  233.     PL_LOCK;
  234.     p_playlist->p_private = &p_export;
  235.     module_t *p_mod = module_need( p_playlist, "meta writer", NULL, false );
  236.     if( p_mod )
  237.         module_unneed( p_playlist, p_mod );
  238.     PL_UNLOCK;
  239.     pl_Release( p_intf );
  240.     /* Reset the status of the mode. No need to emit any signal because parent
  241.        is the only caller */
  242.     b_inEditMode = false;
  243. }
  244. bool MetaPanel::isInEditMode()
  245. {
  246.     return b_inEditMode;
  247. }
  248. void MetaPanel::enterEditMode()
  249. {
  250.     msg_Dbg( p_intf, "Entering Edit MetaData Mode" );
  251.     setEditMode( true );
  252. }
  253. void MetaPanel::setEditMode( bool b_editing )
  254. {
  255.     b_inEditMode = b_editing;
  256.     if( b_editing )emit editing();
  257. }
  258. /*
  259.  * Clear all the metadata widgets
  260.  */
  261. void MetaPanel::clear()
  262. {
  263.     title_text->clear();
  264.     artist_text->clear();
  265.     genre_text->clear();
  266.     copyright_text->clear();
  267.     collection_text->clear();
  268.     seqnum_text->clear();
  269.     description_text->clear();
  270.     date_text->clear();
  271.     language_text->clear();
  272.     nowplaying_text->clear();
  273.     publisher_text->clear();
  274.     setEditMode( false );
  275.     emit uriSet( "" );
  276. }
  277. /**
  278.  * Second Panel - Shows the extra metadata in a tree, non editable.
  279.  **/
  280. ExtraMetaPanel::ExtraMetaPanel( QWidget *parent,
  281.                                 intf_thread_t *_p_intf )
  282.                                 : QWidget( parent ), p_intf( _p_intf )
  283. {
  284.      QGridLayout *layout = new QGridLayout(this);
  285.      QLabel *topLabel = new QLabel( qtr( "Extra metadata and other information"
  286.                  " are shown in this panel.n" ) );
  287.      topLabel->setWordWrap( true );
  288.      layout->addWidget( topLabel, 0, 0 );
  289.      extraMetaTree = new QTreeWidget( this );
  290.      extraMetaTree->setAlternatingRowColors( true );
  291.      extraMetaTree->setColumnCount( 2 );
  292.      extraMetaTree->resizeColumnToContents( 0 );
  293.      extraMetaTree->header()->hide();
  294. /*     QStringList headerList = ( QStringList() << qtr( "Type" )
  295.  *                                             << qtr( "Value" ) );
  296.  * Useless, add this header if you think it would help the user          **
  297.  */
  298.      layout->addWidget( extraMetaTree, 1, 0 );
  299. }
  300. /**
  301.  * Update the Extra Metadata from p_meta->i_extras
  302.  **/
  303. void ExtraMetaPanel::update( input_item_t *p_item )
  304. {
  305.     if( !p_item )
  306.     {
  307.         clear();
  308.         return;
  309.     }
  310.     QList<QTreeWidgetItem *> items;
  311.     extraMetaTree->clear();
  312.     vlc_mutex_lock( &p_item->lock );
  313.     vlc_meta_t *p_meta = p_item->p_meta;
  314.     if( !p_meta )
  315.     {
  316.         vlc_mutex_unlock( &p_item->lock );
  317.         return;
  318.     }
  319.     vlc_dictionary_t * p_dict = &p_meta->extra_tags;
  320.     char ** ppsz_allkey = vlc_dictionary_all_keys( p_dict );
  321.     for( int i = 0; ppsz_allkey[i] ; i++ )
  322.     {
  323.         const char * psz_value = (const char *)vlc_dictionary_value_for_key(
  324.                 p_dict, ppsz_allkey[i] );
  325.         QStringList tempItem;
  326.         tempItem.append( qfu( ppsz_allkey[i] ) + " : ");
  327.         tempItem.append( qfu( psz_value ) );
  328.         items.append( new QTreeWidgetItem ( extraMetaTree, tempItem ) );
  329.         free( ppsz_allkey[i] );
  330.     }
  331.     vlc_mutex_unlock( &p_item->lock );
  332.     free( ppsz_allkey );
  333.     extraMetaTree->addTopLevelItems( items );
  334.     extraMetaTree->resizeColumnToContents( 0 );
  335. }
  336. /**
  337.  * Clear the ExtraMetaData Tree
  338.  **/
  339. void ExtraMetaPanel::clear()
  340. {
  341.     extraMetaTree->clear();
  342. }
  343. /**
  344.  * Third panel - Stream info
  345.  * Display all codecs and muxers info that we could gather.
  346.  **/
  347. InfoPanel::InfoPanel( QWidget *parent,
  348.                       intf_thread_t *_p_intf )
  349.                       : QWidget( parent ), p_intf( _p_intf )
  350. {
  351.      QGridLayout *layout = new QGridLayout(this);
  352.      QList<QTreeWidgetItem *> items;
  353.      QLabel *topLabel = new QLabel( qtr( "Information about what your media or"
  354.               " stream is made of.nMuxer, Audio and Video Codecs, Subtitles "
  355.               "are shown." ) );
  356.      topLabel->setWordWrap( true );
  357.      layout->addWidget( topLabel, 0, 0 );
  358.      InfoTree = new QTreeWidget(this);
  359.      InfoTree->setColumnCount( 1 );
  360.      InfoTree->setColumnWidth( 0, 20000 );
  361.      InfoTree->header()->hide();
  362. //     InfoTree->header()->setStretchLastSection(false);
  363. //     InfoTree->header()->setResizeMode(QHeaderView::ResizeToContents);
  364.      layout->addWidget(InfoTree, 1, 0 );
  365. }
  366. /**
  367.  * Update the Codecs information on parent->update()
  368.  **/
  369. void InfoPanel::update( input_item_t *p_item)
  370. {
  371.     if( !p_item )
  372.     {
  373.         clear();
  374.         return;
  375.     }
  376.     InfoTree->clear();
  377.     QTreeWidgetItem *current_item = NULL;
  378.     QTreeWidgetItem *child_item = NULL;
  379.     for( int i = 0; i< p_item->i_categories ; i++)
  380.     {
  381.         current_item = new QTreeWidgetItem();
  382.         current_item->setText( 0, qfu(p_item->pp_categories[i]->psz_name) );
  383.         InfoTree->addTopLevelItem( current_item );
  384.         for( int j = 0 ; j < p_item->pp_categories[i]->i_infos ; j++ )
  385.         {
  386.             child_item = new QTreeWidgetItem ();
  387.             child_item->setText( 0,
  388.                     qfu(p_item->pp_categories[i]->pp_infos[j]->psz_name)
  389.                     + ": "
  390.                     + qfu(p_item->pp_categories[i]->pp_infos[j]->psz_value));
  391.             current_item->addChild(child_item);
  392.         }
  393.          InfoTree->setItemExpanded( current_item, true);
  394.     }
  395. }
  396. /**
  397.  * Clear the tree
  398.  **/
  399. void InfoPanel::clear()
  400. {
  401.     InfoTree->clear();
  402. }
  403. /**
  404.  * Save all the information to a file
  405.  * Not yet implemented.
  406.  **/
  407. /*
  408. void InfoPanel::saveCodecsInfo()
  409. {}
  410. */
  411. /**
  412.  * Fourth Panel - Stats
  413.  * Displays the Statistics for reading/streaming/encoding/displaying in a tree
  414.  */
  415. InputStatsPanel::InputStatsPanel( QWidget *parent,
  416.                                   intf_thread_t *_p_intf )
  417.                                   : QWidget( parent ), p_intf( _p_intf )
  418. {
  419.      QGridLayout *layout = new QGridLayout(this);
  420.      QList<QTreeWidgetItem *> items;
  421.      QLabel *topLabel = new QLabel( qtr( "Statistics about the currently "
  422.                  "playing media or stream." ) );
  423.      topLabel->setWordWrap( true );
  424.      layout->addWidget( topLabel, 0, 0 );
  425.      StatsTree = new QTreeWidget(this);
  426.      StatsTree->setColumnCount( 3 );
  427.      StatsTree->header()->hide();
  428. #define CREATE_TREE_ITEM( itemName, itemText, itemValue, unit ) {              
  429.     itemName =                                                                 
  430.       new QTreeWidgetItem((QStringList () << itemText << itemValue << unit )); 
  431.     itemName->setTextAlignment( 1 , Qt::AlignRight ) ; }
  432. #define CREATE_CATEGORY( catName, itemText ) {                           
  433.     CREATE_TREE_ITEM( catName, itemText , "", "" );                      
  434.     catName->setExpanded( true );                                        
  435.     StatsTree->addTopLevelItem( catName );    }
  436. #define CREATE_AND_ADD_TO_CAT( itemName, itemText, itemValue, catName, unit ){ 
  437.     CREATE_TREE_ITEM( itemName, itemText, itemValue, unit );                   
  438.     catName->addChild( itemName ); }
  439.     /* Create the main categories */
  440.     CREATE_CATEGORY( audio, qtr("Audio") );
  441.     CREATE_CATEGORY( video, qtr("Video") );
  442.     CREATE_CATEGORY( input, qtr("Input") );
  443.     CREATE_CATEGORY( streaming, qtr("Streaming") );
  444.     CREATE_AND_ADD_TO_CAT( read_media_stat, qtr("Read at media"),
  445.                            "0", input , "kB" );
  446.     CREATE_AND_ADD_TO_CAT( input_bitrate_stat, qtr("Input bitrate"),
  447.                            "0", input, "kb/s" );
  448.     CREATE_AND_ADD_TO_CAT( demuxed_stat, qtr("Demuxed"), "0", input, "kB") ;
  449.     CREATE_AND_ADD_TO_CAT( stream_bitrate_stat, qtr("Stream bitrate"),
  450.                            "0", input, "kb/s" );
  451.     CREATE_AND_ADD_TO_CAT( corrupted_stat, qtr("Corrupted"),
  452.                            "0", input, "" );
  453.     CREATE_AND_ADD_TO_CAT( discontinuity_stat, qtr("Discontinuities"),
  454.                            "0", input, "" );
  455.     CREATE_AND_ADD_TO_CAT( vdecoded_stat, qtr("Decoded blocks"),
  456.                            "0", video, "" );
  457.     CREATE_AND_ADD_TO_CAT( vdisplayed_stat, qtr("Displayed frames"),
  458.                            "0", video, "" );
  459.     CREATE_AND_ADD_TO_CAT( vlost_frames_stat, qtr("Lost frames"),
  460.                            "0", video, "" );
  461.     CREATE_AND_ADD_TO_CAT( send_stat, qtr("Sent packets"), "0", streaming, "" );
  462.     CREATE_AND_ADD_TO_CAT( send_bytes_stat, qtr("Sent bytes"),
  463.                            "0", streaming, "kB" );
  464.     CREATE_AND_ADD_TO_CAT( send_bitrate_stat, qtr("Sent bitrate"),
  465.                            "0", streaming, "kb/s" );
  466.     CREATE_AND_ADD_TO_CAT( adecoded_stat, qtr("Decoded blocks"),
  467.                            "0", audio, "" );
  468.     CREATE_AND_ADD_TO_CAT( aplayed_stat, qtr("Played buffers"),
  469.                            "0", audio, "" );
  470.     CREATE_AND_ADD_TO_CAT( alost_stat, qtr("Lost buffers"), "0", audio, "" );
  471. #undef CREATE_AND_ADD_TO_CAT
  472. #undef CREATE_CATEGORY
  473. #undef CREATE_TREE_ITEM
  474.     input->setExpanded( true );
  475.     video->setExpanded( true );
  476.     streaming->setExpanded( true );
  477.     audio->setExpanded( true );
  478.     StatsTree->resizeColumnToContents( 0 );
  479.     StatsTree->setColumnWidth( 1 , 200 );
  480.     layout->addWidget(StatsTree, 1, 0 );
  481. }
  482. /**
  483.  * Update the Statistics
  484.  **/
  485. void InputStatsPanel::update( input_item_t *p_item )
  486. {
  487.     assert( p_item );
  488.     vlc_mutex_lock( &p_item->p_stats->lock );
  489. #define UPDATE( widget, format, calc... ) 
  490.     { QString str; widget->setText( 1 , str.sprintf( format, ## calc ) );  }
  491.     UPDATE( read_media_stat, "%8.0f",
  492.             (float)(p_item->p_stats->i_read_bytes)/1000);
  493.     UPDATE( input_bitrate_stat, "%6.0f",
  494.                     (float)(p_item->p_stats->f_input_bitrate * 8000 ));
  495.     UPDATE( demuxed_stat, "%8.0f",
  496.                     (float)(p_item->p_stats->i_demux_read_bytes)/1000 );
  497.     UPDATE( stream_bitrate_stat, "%6.0f",
  498.                     (float)(p_item->p_stats->f_demux_bitrate * 8000 ));
  499.     UPDATE( corrupted_stat, "%5i", p_item->p_stats->i_demux_corrupted );
  500.     UPDATE( discontinuity_stat, "%5i", p_item->p_stats->i_demux_discontinuity );
  501.     /* Video */
  502.     UPDATE( vdecoded_stat, "%5i", p_item->p_stats->i_decoded_video );
  503.     UPDATE( vdisplayed_stat, "%5i", p_item->p_stats->i_displayed_pictures );
  504.     UPDATE( vlost_frames_stat, "%5i", p_item->p_stats->i_lost_pictures );
  505.     /* Sout */
  506.     UPDATE( send_stat, "%5i", p_item->p_stats->i_sent_packets );
  507.     UPDATE( send_bytes_stat, "%8.0f",
  508.             (float)(p_item->p_stats->i_sent_bytes)/1000 );
  509.     UPDATE( send_bitrate_stat, "%6.0f",
  510.             (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
  511.     /* Audio*/
  512.     UPDATE( adecoded_stat, "%5i", p_item->p_stats->i_decoded_audio );
  513.     UPDATE( aplayed_stat, "%5i", p_item->p_stats->i_played_abuffers );
  514.     UPDATE( alost_stat, "%5i", p_item->p_stats->i_lost_abuffers );
  515. #undef UPDATE
  516.     vlc_mutex_unlock(& p_item->p_stats->lock );
  517. }
  518. void InputStatsPanel::clear()
  519. {
  520. }