Commit 107b0f59 authored by alex's avatar alex

increase audio buffer to 1second of 48khz float audio


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5013 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 52320e04
...@@ -21,8 +21,8 @@ extern "C" { ...@@ -21,8 +21,8 @@ extern "C" {
#define AV_STRINGIFY(s) AV_TOSTRING(s) #define AV_STRINGIFY(s) AV_TOSTRING(s)
#define AV_TOSTRING(s) #s #define AV_TOSTRING(s) #s
#define LIBAVCODEC_VERSION_INT ((51<<16)+(4<<8)+0) #define LIBAVCODEC_VERSION_INT ((51<<16)+(5<<8)+0)
#define LIBAVCODEC_VERSION 51.4.0 #define LIBAVCODEC_VERSION 51.5.0
#define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
#define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
...@@ -270,7 +270,7 @@ enum SampleFormat { ...@@ -270,7 +270,7 @@ enum SampleFormat {
}; };
/* in bytes */ /* in bytes */
#define AVCODEC_MAX_AUDIO_FRAME_SIZE 131072 #define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 // 1 second of 48khz 32bit audio
/** /**
* Required number of additionally allocated bytes at the end of the input bitstream for decoding. * Required number of additionally allocated bytes at the end of the input bitstream for decoding.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment