Changeset 1916 for trunk/lang


Ignore:
Timestamp:
Oct 6, 2010, 6:58:50 AM (14 years ago)
Author:
dkearney
Message:

switching from RpMediaPlayer? to RpVideo? code for the video viewer widget. changed flowdial widget so the dial moved as needed for the video widget.

Location:
trunk/lang/tcl/src
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/lang/tcl/src/Makefile.in

    r1887 r1916  
    7171FFMPEG          = @HAVE_FFMPEG_LIBS@
    7272ifeq ($(FFMPEG),yes)
    73     OBJS += RpMediaPlayerTclInterface.o
     73    # OBJS += RpMediaPlayerTclInterface.o
     74    OBJS += RpVideoTclInterface.o
    7475    LIBS += -L../../../src/objects -lRpObjects
    7576endif
  • trunk/lang/tcl/src/Rappture_Init.c

    r1873 r1916  
    3838
    3939#ifdef BUILD_with_ffmpeg
    40 extern Tcl_AppInitProc RpMediaPlayer_Init;
     40// extern Tcl_AppInitProc RpMediaPlayer_Init;
     41extern Tcl_AppInitProc RpVideo_Init;
    4142#endif
    4243
     
    7172    }
    7273#ifdef BUILD_with_ffmpeg
    73     if (RpMediaPlayer_Init(interp) != TCL_OK) {
     74//    if (RpMediaPlayer_Init(interp) != TCL_OK) {
     75//        return TCL_ERROR;
     76//    }
     77    if (RpVideo_Init(interp) != TCL_OK) {
    7478        return TCL_ERROR;
    7579    }
Note: See TracChangeset for help on using the changeset viewer.