Ignore:
Timestamp:
2017-06-07T14:23:04+02:00 (7 years ago)
Author:
donvip
Message:

update dependencies

Location:
applications/editors/josm/plugins/videomapping
Files:
5 added
3 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/videomapping/.classpath

    r32680 r33376  
    66        <classpathentry combineaccessrules="false" kind="src" path="/JOSM-jna"/>
    77        <classpathentry combineaccessrules="false" kind="src" path="/JOSM-log4j"/>
    8         <classpathentry kind="lib" path="lib/vlcj-3.10.0.jar" sourcepath="lib/vlcj-3.10.0-sources.jar">
     8        <classpathentry kind="lib" path="lib/vlcj-3.10.1.jar" sourcepath="lib/vlcj-3.10.1-sources.jar">
    99                <attributes>
    10                         <attribute name="javadoc_location" value="jar:platform:/resource/JOSM-videomapping/lib/vlcj-3.10.0-javadoc.jar!/"/>
     10                        <attribute name="javadoc_location" value="jar:platform:/resource/JOSM-videomapping/lib/vlcj-3.10.1-javadoc.jar!/"/>
    1111                </attributes>
    1212        </classpathentry>
  • applications/editors/josm/plugins/videomapping/src/org/openstreetmap/josm/plugins/videomapping/video/VideoEngine.java

    r32630 r33376  
    276276    @Override
    277277    public void backward(MediaPlayer arg0) { }
    278 /*
    279     public void buffering(MediaPlayer arg0) {
    280 
    281     }
    282 */
     278
    283279    @Override
    284280    public void error(MediaPlayer arg0) { }
     
    292288    @Override
    293289    public void lengthChanged(MediaPlayer arg0, long arg1) { }
    294 /*
     290    /*
    295291    public void mediaChanged(MediaPlayer arg0) {
    296292
  • applications/editors/josm/plugins/videomapping/src/org/openstreetmap/josm/plugins/videomapping/video/VideoPlayer.java

    r32630 r33376  
    4242    private JToggleButton loop, mute;
    4343    private JSlider speed;
    44 //    private DateFormat videoTimeFormat;
    4544    private VideoEngine videoengine;
    4645    private long jumpLength;
     
    5352    public VideoPlayer(DateFormat videoTimeFormat) throws HeadlessException {
    5453        super();
    55 //        this.videoTimeFormat=videoTimeFormat;
    5654        //setup playback notifications
    5755        videoengine = new VideoEngine(this);
     
    161159        speed.setOrientation(Adjustable.VERTICAL);
    162160        Hashtable<Integer, JLabel> labelTable = new Hashtable<>();
    163         labelTable.put(new Integer(100), new JLabel("1x"));
    164         labelTable.put(new Integer(50), new JLabel("-2x"));
    165         labelTable.put(new Integer(200), new JLabel("2x"));
     161        labelTable.put(100, new JLabel("1x"));
     162        labelTable.put(50, new JLabel("-2x"));
     163        labelTable.put(200, new JLabel("2x"));
    166164        speed.setLabelTable(labelTable);
    167165        speed.setPaintLabels(true);
Note: See TracChangeset for help on using the changeset viewer.