comparison flvenc.c @ 2164:3804e39efbfd libavformat

misc spelling fixes
author diego
date Tue, 12 Jun 2007 09:29:25 +0000
parents cd4c59c788fc
children 33033ec6fc6c
comparison
equal deleted inserted replaced
2163:6c0176688fae 2164:3804e39efbfd
67 case 8000: //nellymoser only 67 case 8000: //nellymoser only
68 case 5512: //not mp3 68 case 5512: //not mp3
69 flags |= FLV_SAMPLERATE_SPECIAL; 69 flags |= FLV_SAMPLERATE_SPECIAL;
70 break; 70 break;
71 default: 71 default:
72 av_log(enc, AV_LOG_ERROR, "flv doesnt support that sample rate, choose from (44100, 22050, 11025)\n"); 72 av_log(enc, AV_LOG_ERROR, "flv does not support that sample rate, choose from (44100, 22050, 11025).\n");
73 return -1; 73 return -1;
74 } 74 }
75 75
76 if (enc->channels > 1) { 76 if (enc->channels > 1) {
77 flags |= FLV_STEREO; 77 flags |= FLV_STEREO;