Commit bab8d966 authored by Sebastian Ramacher's avatar Sebastian Ramacher Committed by Jean-Baptiste Kempf

Fix spelling of "unknown"

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent e8e468fb
...@@ -656,7 +656,7 @@ static int Describe( access_t *p_access, char **ppsz_location ) ...@@ -656,7 +656,7 @@ static int Describe( access_t *p_access, char **ppsz_location )
} }
else else
{ {
msg_Warn( p_access, "unknow stream types (%s)", p ); msg_Warn( p_access, "unknown stream types (%s)", p );
p_sys->b_broadcast = false; p_sys->b_broadcast = false;
} }
} }
......
...@@ -240,7 +240,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -240,7 +240,7 @@ static int Open( vlc_object_t *p_this )
break; break;
default: default:
msg_Warn( p_demux, "unknow encoding=0x%x", GetDWBE( &hdr[8] ) ); msg_Warn( p_demux, "unknown encoding=0x%x", GetDWBE( &hdr[8] ) );
p_sys->fmt.audio.i_bitspersample = 0; p_sys->fmt.audio.i_bitspersample = 0;
p_sys->fmt.audio.i_blockalign = 0; p_sys->fmt.audio.i_blockalign = 0;
i_cat = AU_CAT_UNKNOWN; i_cat = AU_CAT_UNKNOWN;
......
...@@ -652,7 +652,7 @@ static int AVI_ChunkRead_indx( stream_t *s, avi_chunk_t *p_chk ) ...@@ -652,7 +652,7 @@ static int AVI_ChunkRead_indx( stream_t *s, avi_chunk_t *p_chk )
} }
else else
{ {
msg_Warn( (vlc_object_t*)s, "unknow type/subtype index" ); msg_Warn( (vlc_object_t*)s, "unknown type/subtype index" );
} }
#ifdef AVI_DEBUG #ifdef AVI_DEBUG
......
...@@ -1483,7 +1483,7 @@ typedef union MP4_Box_data_s ...@@ -1483,7 +1483,7 @@ typedef union MP4_Box_data_s
MP4_Box_data_binary_t *p_binary; MP4_Box_data_binary_t *p_binary;
MP4_Box_data_data_t *p_data; MP4_Box_data_data_t *p_data;
void *p_payload; /* for unknow type */ void *p_payload; /* for unknown type */
} MP4_Box_data_t; } MP4_Box_data_t;
#define BOXDATA(type) type->data.type #define BOXDATA(type) type->data.type
......
...@@ -1314,7 +1314,7 @@ static int HeaderRead( demux_t *p_demux ) ...@@ -1314,7 +1314,7 @@ static int HeaderRead( demux_t *p_demux )
i_ret = HeaderDATA( p_demux, i_size ); i_ret = HeaderDATA( p_demux, i_size );
break; break;
default: default:
/* unknow header */ /* unknown header */
msg_Dbg( p_demux, "unknown chunk" ); msg_Dbg( p_demux, "unknown chunk" );
i_ret = VLC_SUCCESS; i_ret = VLC_SUCCESS;
break; break;
......
...@@ -108,7 +108,7 @@ static const char * GetErrorMessage( const int i_error, ...@@ -108,7 +108,7 @@ static const char * GetErrorMessage( const int i_error,
return p_errors_messages[i].psz_error; return p_errors_messages[i].psz_error;
i++; i++;
} }
return "unkown error"; return "unknown error";
} }
static size_t RemainRead( stream_t *p_stream, uint8_t *p_data, size_t i_toread ) static size_t RemainRead( stream_t *p_stream, uint8_t *p_data, size_t i_toread )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment