]> git.sesse.net Git - ffmpeg/commitdiff
Make avcodec_string() and av_get_bits_per_sample() report the sample size for CODEC_I...
authorPeter Ross <pross@xvid.org>
Mon, 4 Aug 2008 07:40:07 +0000 (07:40 +0000)
committerPeter Ross <pross@xvid.org>
Mon, 4 Aug 2008 07:40:07 +0000 (07:40 +0000)
Originally committed as revision 14532 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/utils.c

index 1c98c312f07ba41960f8402f09384635eab29ecd..599226145a944661dc6c7a18fa557f814c3ce2f7 100644 (file)
@@ -1181,6 +1181,7 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
         case CODEC_ID_PCM_U8:
         case CODEC_ID_PCM_ALAW:
         case CODEC_ID_PCM_MULAW:
+        case CODEC_ID_PCM_ZORK:
             bitrate = enc->sample_rate * enc->channels * 8;
             break;
         default:
@@ -1290,6 +1291,7 @@ int av_get_bits_per_sample(enum CodecID codec_id){
     case CODEC_ID_PCM_MULAW:
     case CODEC_ID_PCM_S8:
     case CODEC_ID_PCM_U8:
+    case CODEC_ID_PCM_ZORK:
         return 8;
     case CODEC_ID_PCM_S16BE:
     case CODEC_ID_PCM_S16LE: