comparison lcl.c @ 2628:511e3afc43e1 libavcodec

Ministry of English Composition, reporting for duty (and the word is "skipped", not "skiped"; "skiped" would rhyme with "hyped")
author melanson
date Sun, 24 Apr 2005 17:21:11 +0000
parents 9a7770ebed14
children ef2149182f1c
comparison
equal deleted inserted replaced
2627:bf158d23bbcc 2628:511e3afc43e1
712 case COMP_ZLIB_NORMAL: 712 case COMP_ZLIB_NORMAL:
713 av_log(avctx, AV_LOG_INFO, "Normal compression.\n"); 713 av_log(avctx, AV_LOG_INFO, "Normal compression.\n");
714 break; 714 break;
715 default: 715 default:
716 if ((c->compression < Z_NO_COMPRESSION) || (c->compression > Z_BEST_COMPRESSION)) { 716 if ((c->compression < Z_NO_COMPRESSION) || (c->compression > Z_BEST_COMPRESSION)) {
717 av_log(avctx, AV_LOG_ERROR, "Unusupported compression level for ZLIB: (%d).\n", c->compression); 717 av_log(avctx, AV_LOG_ERROR, "Unsupported compression level for ZLIB: (%d).\n", c->compression);
718 return 1; 718 return 1;
719 } 719 }
720 av_log(avctx, AV_LOG_INFO, "Compression level for ZLIB: (%d).\n", c->compression); 720 av_log(avctx, AV_LOG_INFO, "Compression level for ZLIB: (%d).\n", c->compression);
721 } 721 }
722 #else 722 #else