OSDN Git Service

ffserver: Allow floating point audio bit rates
authorMartin Storsjö <martin@martin.st>
Wed, 2 Jun 2010 07:09:44 +0000 (07:09 +0000)
committerMartin Storsjö <martin@martin.st>
Wed, 2 Jun 2010 07:09:44 +0000 (07:09 +0000)
This allows setting bit rates that aren't an exact multiple of 1000.

Originally committed as revision 23419 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffserver.c

index faea1a7..7af4938 100644 (file)
@@ -4300,7 +4300,7 @@ static int parse_ffconfig(const char *filename)
         } else if (!strcasecmp(cmd, "AudioBitRate")) {
             get_arg(arg, sizeof(arg), &p);
             if (stream)
-                audio_enc.bit_rate = atoi(arg) * 1000;
+                audio_enc.bit_rate = lrintf(atof(arg) * 1000);
         } else if (!strcasecmp(cmd, "AudioChannels")) {
             get_arg(arg, sizeof(arg), &p);
             if (stream)