mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 05:24:42 +00:00
rtpdec_amr: set channel layout
This commit is contained in:
parent
ce842029ce
commit
c1ac602d53
@ -19,6 +19,7 @@
|
|||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "libavutil/channel_layout.h"
|
||||||
#include "avformat.h"
|
#include "avformat.h"
|
||||||
#include "rtpdec_formats.h"
|
#include "rtpdec_formats.h"
|
||||||
#include "libavutil/avstring.h"
|
#include "libavutil/avstring.h"
|
||||||
@ -77,6 +78,7 @@ static int amr_handle_packet(AVFormatContext *ctx,
|
|||||||
av_log(ctx, AV_LOG_ERROR, "Only mono AMR is supported\n");
|
av_log(ctx, AV_LOG_ERROR, "Only mono AMR is supported\n");
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
st->codec->channel_layout = AV_CH_LAYOUT_MONO;
|
||||||
|
|
||||||
/* The AMR RTP packet consists of one header byte, followed
|
/* The AMR RTP packet consists of one header byte, followed
|
||||||
* by one TOC byte for each AMR frame in the packet, followed
|
* by one TOC byte for each AMR frame in the packet, followed
|
||||||
|
Loading…
Reference in New Issue
Block a user