]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/libgsmenc.c
avcodec/proresdec2: Use LAST_SKIP_BITS where possible
[ffmpeg] / libavcodec / libgsmenc.c
index 69ce439ec1db88316288e27b7704b6360ce54158..e25db95181009af11b373c834f2265b240e25040 100644 (file)
@@ -63,7 +63,7 @@ static av_cold int libgsm_encode_init(AVCodecContext *avctx) {
         avctx->bit_rate != 13200 /* Very common */ &&
         avctx->bit_rate != 0 /* Unknown; a.o. mov does not set bitrate when decoding */ ) {
         av_log(avctx, AV_LOG_ERROR, "Bitrate 13000bps required for GSM, got %"PRId64"bps\n",
-               (int64_t)avctx->bit_rate);
+               avctx->bit_rate);
         if (avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL)
             return -1;
     }