1
mirror of https://github.com/mpv-player/mpv synced 2024-09-28 17:52:52 +02:00

add default case to encoder switch-case (maybe an error message would be good as well).

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17782 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-03-08 15:49:46 +00:00
parent 694f18ea46
commit e358534d3a

View File

@ -74,6 +74,9 @@ audio_encoder_t *new_audio_encoder(muxer_stream_t *stream, audio_encoding_params
ris = mpae_init_twolame(encoder);
break;
#endif
default:
ris = 0;
break;
}
if(! ris)