]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/vqf.c
avformat/async: Allow compilation with native threads.
[ffmpeg] / libavformat / vqf.c
index 29c726dae92201397243d488bc4ede778461b347..06363a963cc2ce1d1c2d7027459d87a3afb32c69 100644 (file)
@@ -211,8 +211,8 @@ static int vqf_read_header(AVFormatContext *s)
         size = 2048;
         break;
     default:
-        av_log(s, AV_LOG_ERROR, "Mode not suported: %d Hz, %d kb/s.\n",
-               st->codec->sample_rate, st->codec->bit_rate);
+        av_log(s, AV_LOG_ERROR, "Mode not suported: %d Hz, %"PRId64" kb/s.\n",
+               st->codec->sample_rate, (int64_t)st->codec->bit_rate);
         return -1;
     }
     c->frame_bit_len = st->codec->bit_rate*size/st->codec->sample_rate;