@@ -44,37 +44,37 @@ void FileProperties::extractStreamProperties(IProgress& progress, const EAnalyse
44
44
{
45
45
case AVMEDIA_TYPE_VIDEO:
46
46
{
47
- VideoProperties properties (*_formatContext , streamIndex, progress, level);
47
+ VideoProperties properties (*this , streamIndex, progress, level);
48
48
_videoStreams.push_back (properties);
49
49
break ;
50
50
}
51
51
case AVMEDIA_TYPE_AUDIO:
52
52
{
53
- AudioProperties properties (*_formatContext , streamIndex);
53
+ AudioProperties properties (*this , streamIndex);
54
54
_audioStreams.push_back (properties);
55
55
break ;
56
56
}
57
57
case AVMEDIA_TYPE_DATA:
58
58
{
59
- DataProperties properties (*_formatContext , streamIndex);
59
+ DataProperties properties (*this , streamIndex);
60
60
_dataStreams.push_back (properties);
61
61
break ;
62
62
}
63
63
case AVMEDIA_TYPE_SUBTITLE:
64
64
{
65
- SubtitleProperties properties (*_formatContext , streamIndex);
65
+ SubtitleProperties properties (*this , streamIndex);
66
66
_subtitleStreams.push_back (properties);
67
67
break ;
68
68
}
69
69
case AVMEDIA_TYPE_ATTACHMENT:
70
70
{
71
- AttachementProperties properties (*_formatContext , streamIndex);
71
+ AttachementProperties properties (*this , streamIndex);
72
72
_attachementStreams.push_back (properties);
73
73
break ;
74
74
}
75
75
case AVMEDIA_TYPE_UNKNOWN:
76
76
{
77
- UnknownProperties properties (*_formatContext , streamIndex);
77
+ UnknownProperties properties (*this , streamIndex);
78
78
_unknownStreams.push_back (properties);
79
79
break ;
80
80
}
0 commit comments