After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 686543 - Encoding fails and displays MiniObject reference counting messages
Encoding fails and displays MiniObject reference counting messages
Status: RESOLVED DUPLICATE of bug 686327
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
1.0.0
Other Windows
: Normal normal
: NONE
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2012-10-20 19:35 UTC by Michael Rubinstein
Modified: 2012-10-21 15:20 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Michael Rubinstein 2012-10-20 19:35:00 UTC
This pipeline works for a few seconds and then fails:

vid_enc=avenc_mpeg2video
ip=127.0.0.1
port=1235

gst-launch-1.0 -v --gst-debug=3,udpsink:3,multiudpsink:3 \
videotestsrc pattern=smpte is-live=true \
! video/x-raw,format=I420, \
width=720,height=480,framerate=30000/1001 \
! $vid_enc bitrate=4000000 \
! queue \
! mpegtsmux \
! queue name=udpq \
! rtpmp2tpay \
! udpsink port=$port host=$ip sync=true buffer-size=300000

Here a few of the error messages:

(gst-launch-1.0:9876): GStreamer-CRITICAL **: gst_mini_object_unref: assertion `mini_object->refcount > 0' failed

(gst-launch-1.0:9876): GStreamer-CRITICAL **: gst_mini_object_unref: assertion `mini_object->refcount > 0' failed

** (gst-launch-1.0:9876): WARNING **: Unexpected item 02DBA8D8 dequeued from queue udpq (refcounting problem?)

(gst-launch-1.0:9876): GStreamer-CRITICAL **: gst_mini_object_unref: assertion `mini_object->refcount > 0' failed


Here's a simplified pipeline that also prints the assertion messages:

gst-launch-1.0 \
videotestsrc pattern=smpte is-live=true \
! video/x-raw,format=I420, \
width=720,height=480,framerate=30000/1001 \
! $vid_enc  \
! mpegtsmux \
! fakesink

I tried the simplified pipeline on my MinGW (1.0.1) build and on ubuntu (1.0).
I got the same assertion messages in both cases.
Comment 1 Tim-Philipp Müller 2012-10-20 19:45:08 UTC
Likely the same issue as bug #686327 .
Comment 2 Tim-Philipp Müller 2012-10-21 15:20:45 UTC
Indeed, fixed in 1.0.2.

*** This bug has been marked as a duplicate of bug 686327 ***