diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-06-01 20:00:26 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-06-01 20:00:26 +0000 |
commit | 03a3fcee99857131a4bdb52108980d189b9c8762 (patch) | |
tree | 47065d9eb82f23afd3db984c1139416ccd7000bb /libavformat/rtsp.h | |
parent | b742a12ee2f2428616951dcb3e300a45d1171cd3 (diff) | |
download | ffmpeg-03a3fcee99857131a4bdb52108980d189b9c8762.tar.gz |
Change default number of channels (used if unspecified in the format desc)
from 2 to 1, which is the actual value used in the spec. Fixes issue1978.
Path by John Wimer <john at god dot vtic dot net>.
Originally committed as revision 23414 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 357d3bfc0c..342f825fce 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -52,7 +52,7 @@ enum RTSPTransport { #define RTSP_DEFAULT_PORT 554 #define RTSP_MAX_TRANSPORTS 8 #define RTSP_TCP_MAX_PACKET_SIZE 1472 -#define RTSP_DEFAULT_NB_AUDIO_CHANNELS 2 +#define RTSP_DEFAULT_NB_AUDIO_CHANNELS 1 #define RTSP_DEFAULT_AUDIO_SAMPLERATE 44100 #define RTSP_RTP_PORT_MIN 5000 #define RTSP_RTP_PORT_MAX 10000 |