Module: libav Branch: master Commit: 839df90c718dcab9b9e91ca3c7e73479b3e8103c
Author: Carl Eugen Hoyos <[email protected]> Committer: Luca Barbato <[email protected]> Date: Thu Aug 16 10:20:25 2012 +0200 lxf: Support 16-channel files Reported, analyzed and tested by Gabriel Gerard. Signed-off-by: Luca Barbato <[email protected]> --- libavformat/lxfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/lxfdec.c b/libavformat/lxfdec.c index 75be218..f29b773 100644 --- a/libavformat/lxfdec.c +++ b/libavformat/lxfdec.c @@ -270,7 +270,7 @@ static int lxf_read_header(AVFormatContext *s) if ((video_params >> 22) & 1) av_log(s, AV_LOG_WARNING, "VBI data not yet supported\n"); - if ((lxf->channels = (disk_params >> 2) & 0xF)) { + if ((lxf->channels = 1 << (disk_params >> 4 & 3) + 1)) { if (!(st = avformat_new_stream(s, NULL))) return AVERROR(ENOMEM); _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
