diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-11-21 20:15:02 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-11-25 11:10:52 -0500 |
commit | b491da18d1df50428411b40d76db496068861496 (patch) | |
tree | 7cd4a419b97360d2b77557d843e544fdaef22086 /libavformat/yop.c | |
parent | 4632abc7a3a64b23c243b21cae7a08e5af92231e (diff) | |
download | ffmpeg-b491da18d1df50428411b40d76db496068861496.tar.gz |
yop: fix typo
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
Diffstat (limited to 'libavformat/yop.c')
-rw-r--r-- | libavformat/yop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/yop.c b/libavformat/yop.c index 351938b7e9..5fe6bdc7d4 100644 --- a/libavformat/yop.c +++ b/libavformat/yop.c @@ -75,7 +75,7 @@ static int yop_read_header(AVFormatContext *s) audio_dec->codec_type = AVMEDIA_TYPE_AUDIO; audio_dec->codec_id = AV_CODEC_ID_ADPCM_IMA_APC; audio_dec->channels = 1; - audio_dec->channels = AV_CH_LAYOUT_MONO; + audio_dec->channel_layout = AV_CH_LAYOUT_MONO; audio_dec->sample_rate = 22050; // Video |