avformat/matroskadec: Use tracks[k]->stream instead of s->streams[k]
The later is not correct Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e54540655f
commit
5d309d3091
@ -2012,8 +2012,8 @@ static int matroska_parse_tracks(AVFormatContext *s)
|
|||||||
snprintf(buf, sizeof(buf), "%s_%d",
|
snprintf(buf, sizeof(buf), "%s_%d",
|
||||||
ff_matroska_video_stereo_plane[planes[j].type], i);
|
ff_matroska_video_stereo_plane[planes[j].type], i);
|
||||||
for (k=0; k < matroska->tracks.nb_elem; k++)
|
for (k=0; k < matroska->tracks.nb_elem; k++)
|
||||||
if (planes[j].uid == tracks[k].uid && s->streams[k]) {
|
if (planes[j].uid == tracks[k].uid && tracks[k].stream) {
|
||||||
av_dict_set(&s->streams[k]->metadata,
|
av_dict_set(&tracks[k].stream->metadata,
|
||||||
"stereo_mode", buf, 0);
|
"stereo_mode", buf, 0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user