Renamed frames to previewFrames (so it's better understandable)
This commit is contained in:
parent
b086655d54
commit
09b670d745
|
@ -336,7 +336,7 @@ public class StreamInfo extends Info {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
streamInfo.setFrames(extractor.getFrames());
|
streamInfo.setPreviewFrames(extractor.getFrames());
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
streamInfo.addError(e);
|
streamInfo.addError(e);
|
||||||
}
|
}
|
||||||
|
@ -393,9 +393,9 @@ public class StreamInfo extends Info {
|
||||||
private List<MetaInfo> metaInfo = new ArrayList<>();
|
private List<MetaInfo> metaInfo = new ArrayList<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Frames, e.g. for the storyboard / seekbar thumbnail preview
|
* Preview frames, e.g. for the storyboard / seekbar thumbnail preview
|
||||||
*/
|
*/
|
||||||
private List<Frameset> frames = new ArrayList<>();
|
private List<Frameset> previewFrames = new ArrayList<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the stream type
|
* Get the stream type
|
||||||
|
@ -722,12 +722,12 @@ public class StreamInfo extends Info {
|
||||||
this.metaInfo = metaInfo;
|
this.metaInfo = metaInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Frameset> getFrames() {
|
public List<Frameset> getPreviewFrames() {
|
||||||
return frames;
|
return previewFrames;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setFrames(List<Frameset> frames) {
|
public void setPreviewFrames(final List<Frameset> previewFrames) {
|
||||||
this.frames = frames;
|
this.previewFrames = previewFrames;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nonnull
|
@Nonnull
|
||||||
|
|
Loading…
Reference in New Issue