diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-11-13 13:25:19 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-11-13 13:25:19 +0000 |
commit | 09a0392341ac0bfc969f0ff9e103671b3c64713e (patch) | |
tree | 53d8c90c98a7a6413259c18e03aa7392d34ead64 /libavformat/paf.c | |
parent | 1acd2f6ba7bc85d4aab6f0ebdc56c8d21785640e (diff) | |
download | ffmpeg-09a0392341ac0bfc969f0ff9e103671b3c64713e.tar.gz |
paf: set channel layout
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/paf.c')
-rw-r--r-- | libavformat/paf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/paf.c b/libavformat/paf.c index e67732bb83..09786eb34f 100644 --- a/libavformat/paf.c +++ b/libavformat/paf.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/channel_layout.h" #include "libavcodec/paf.h" #include "avformat.h" #include "internal.h" @@ -119,6 +120,7 @@ static int read_header(AVFormatContext *s) ast->codec->codec_tag = 0; ast->codec->codec_id = AV_CODEC_ID_PAF_AUDIO; ast->codec->channels = 2; + ast->codec->channel_layout = AV_CH_LAYOUT_STEREO; ast->codec->sample_rate = 22050; avpriv_set_pts_info(ast, 64, 1, 22050); |