Is there an option to hide the snapshot file name shown on the video every time a snapshot is taken?
thanks.
Code: Select all
/**
* This function will display the name and a PIP of the provided snapshot
*/
static void VoutOsdSnapshot( vout_thread_t *p_vout, picture_t *p_pic, const char *psz_filename )
{
msg_Dbg( p_vout, "snapshot taken (%s)", psz_filename );
vout_OSDMessage( VLC_OBJECT( p_vout ), DEFAULT_CHAN, "%s", psz_filename );
if( var_GetBool( p_vout, "snapshot-preview" ) )
{
if( VoutSnapshotPip( p_vout, p_pic ) )
msg_Warn( p_vout, "Failed to display snapshot" );
}
}
Return to “Development around libVLC”
Users browsing this forum: No registered users and 1 guest