Commit 37653f0b authored by Baptiste Coudurier's avatar Baptiste Coudurier

set channel number even for inactive channels

Originally committed as revision 17581 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6df1deda
...@@ -1617,7 +1617,7 @@ static void mxf_write_d10_audio_packet(AVFormatContext *s, AVStream *st, AVPacke ...@@ -1617,7 +1617,7 @@ static void mxf_write_d10_audio_packet(AVFormatContext *s, AVStream *st, AVPacke
put_le32(pb, sample | i); put_le32(pb, sample | i);
} }
for (; i < 8; i++) for (; i < 8; i++)
put_le32(pb, 0); put_le32(pb, i);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment