I built a widget in Qt that play a rtsp audio/video stream with Live555 and FFMPEG. I works and now I want to include it inside a Qt BrowserPlugin. My plugin at the moment is able to start the RTSP session (i can see packets start to arrive from the camera) but an error occurs and plugin stops with an error.
Could anyone say me anything about this kind of problem?
The only thing that Firefox says is "anomalous plugin crash". In practice it starts for some seconds and than crashs, even if with WireShark I can see that the RTSP session is started and packets are coming from the camera to my PC.
My .pro file is:
QT += core
QT += gui
QT += multimedia
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
TARGET = pluginvs
win32 {
RC_FILE = pluginvs.rc
} else:mac {
QMAKE_INFO_PLIST = Info.plist
REZ_FILES += pluginvs.r
rsrc_files.files = pluginvs.rsrc
rsrc_files.path = Contents/Resources
QMAKE_BUNDLE_DATA += rsrc_files
}
SOURCES += \
virtualscreen.cpp \
videosink.cpp \
threadlistener.cpp \
rtspmanager.cpp \
livetaskscheduler.cpp \
audiosink.cpp \
audioplayer.cpp \
pluginvs.cpp
HEADERS += \
virtualscreen.h \
videosink.h \
threadlistener.h \
rtspmanager.h \
livetaskscheduler.h \
audiosink.h \
audioplayer.h
include(src/qtbrowserplugin.pri)
# Requied for some C99 defines
DEFINES += __STDC_CONSTANT_MACROS
FFMPEG_ROOT = C:/dev/ffmpeg/ffmpeg-git-059707e-win32-dev
FFMPEG_LIBRARY_PATH = $$FFMPEG_ROOT/lib
FFMPEG_INCLUDE_PATH = $$FFMPEG_ROOT/include
LIVE555_LIBRARY_PATH = C:/dev/live/
LIBS += -L$$FFMPEG_LIBRARY_PATH \
$$LIVE555_LIBRARY_PATH/BasicUsageEnvironment/libBasicUsageEnvironment.a \
$$LIVE555_LIBRARY_PATH/groupsock/libgroupsock.a \
$$LIVE555_LIBRARY_PATH/UsageEnvironment/libUsageEnvironment.a \
$$LIVE555_LIBRARY_PATH/liveMedia/libliveMedia.a \
C:/MinGW/lib/libws2_32.a \
-lavutil \
-lavcodec \
-lavformat \
-lswscale
INCLUDEPATH += $$FFMPEG_INCLUDE_PATH \
$$LIVE555_LIBRARY_PATH/liveMedia/include \
$$LIVE555_LIBRARY_PATH/BasicUsageEnvironment/include \
$$LIVE555_LIBRARY_PATH/groupsock/include \
$$LIVE555_LIBRARY_PATH/UsageEnvironment/include
Thank you -Antonio