[Touch-packages] [Bug 1896098] Re: Lenovo P1G3 - unable to select system speakers when headset plugged into audio jack

2020-12-27 Thread Rex Tsai
** Tags added: hwe-audio

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1896098

Title:
  Lenovo P1G3 - unable to select system speakers when headset plugged
  into audio jack

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  I suspect this is a pulseaudio or alsa bug.

  Our test team reported this:
  1. Prepare Padme-3 machine and Install Ubuntu_20.04 OS .
  2. Boot system.
  3. Play audio or video file.
  4. Open Settings > Sound.
  5. Hot attach headset.
  6. Notice that headset is selected as output device in sound settings and 
sound can be heard from headset => EXPECTED
  7. While playback, select Internal Speaker as output device => KEYPOINT
  9. Notice:SUT havo no sound from Internal Speakers => PROBLEM

  I was able to confirm this - it seems with the headphones connected
  that I can't select the system speakers. If I don't have headphones
  connected I can switch between dock audio and system speakers
  correctly - so it's just related to the audio jack

  Thanks
  Mark

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1896098/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1906091] Re: libx264-148 libx264-152 conflict segmentation fault SIGSEGV

2020-12-27 Thread Rico Tzschichholz
** Changed in: x264 (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to x264 in Ubuntu.
https://bugs.launchpad.net/bugs/1906091

Title:
  libx264-148 libx264-152 conflict segmentation fault SIGSEGV

Status in x264 package in Ubuntu:
  Invalid

Bug description:
  In my app I have segfault due to conflict of libx264-148 vs libx264-152.
  I use gstreamer and libopencv_videoio in my project.
  System is Ubuntu 18.04.5

  The problem is that versions of libx264 get mixed due to implicit
  linking.

  Libraries are linked like this:
  gstreamer -> x264enc -> libx264-152
  libopencv_videoio -> libavcodec-ffmpeg.so.56 -> libx264-148

  Both opencv-based code and gstreamer-based code works well if used
  separately.

  At the top of backtrace I see:
  Thread 13 (Thread 0x7f28e2066700 (LWP 26012)):
  #0  0x7f290181c853 in x264_add8x8_idct_avx2.skip_prologue () at 
/usr/lib/x86_64-linux-gnu/libx264.so.152 // 152
  #1  0x7f2927a93f55 in x264_nal_encode () at 
/usr/lib/x86_64-linux-gnu/libx264.so.148 // 148
  #2  0x7f2927af866c in  () at /usr/lib/x86_64-linux-gnu/libx264.so.148
  #3  0x7f2927b0143b in x264_encoder_headers () at 
/usr/lib/x86_64-linux-gnu/libx264.so.148

  If I use objdump I can find x264_add8x8_idct_avx2.skip_prologue in
  both libx264-148 and libx264-152

  
  Here is example code which fails (C++ needed):

  int main (int argc, char *argv[])
  {
App *app = _app;
GError *error = NULL;
GstBus *bus;
GstCaps *caps;

gst_init (, );

auto cap = cv::VideoCapture("videoplayback.mp4");
cv::Mat f;
cap.read(f);
cv::imshow("f", f);

GST_DEBUG_CATEGORY_INIT (appsrc_pipeline_debug, "appsrc-pipeline", 0,
"appsrc pipeline example");

app->loop = g_main_loop_new (NULL, TRUE);
app->timer = g_timer_new();

app->pipeline = gst_parse_launch(R"(filesrc
  location=videoplayback.mp4 ! decodebin ! videoconvert ! x264enc
  byte-stream=true threads=1
  tune=zerolatency bitrate=400 key-
  int-max=50 option-string="force-cfr=1" !
  video/x-h264,profile=baseline,stream-format="byte-stream" !
  h264parse ! mpegtsmux ! hlssink
  location="/tmp/data%06d.ts" max-files=100
  playlist-length=10 playlist-location="/tmp/kek"
  target-duration=10 playlist-root=".")", NULL);

g_assert (app->pipeline);

bus = gst_pipeline_get_bus (GST_PIPELINE (app->pipeline));
g_assert(bus);

gst_bus_add_watch (bus, (GstBusFunc) bus_message, app);

caps = gst_caps_new_simple ("video/x-raw-rgb",
  "bpp",G_TYPE_INT,8,
  "depth",G_TYPE_INT,8,
   "width", G_TYPE_INT, 640,
   "height", G_TYPE_INT, 480,
   NULL);
gst_element_set_state (app->pipeline, GST_STATE_PLAYING);

g_main_loop_run (app->loop);

GST_DEBUG ("stopping");

gst_element_set_state (app->pipeline, GST_STATE_NULL);

gst_object_unref (bus);
g_main_loop_unref (app->loop);

return 0;
  }


  
  How can I solve this? PLease help!
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.18
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 18.04
  InstallationDate: Installed on 2016-05-07 (1667 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: x264 2:0.152.2854+gite9a5903-2
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.15.0-118.119-generic 4.15.18
  Tags: bionic third-party-packages
  Uname: Linux 4.15.0-118-generic x86_64
  UpgradeStatus: Upgraded to bionic on 2019-12-28 (338 days ago)
  UserGroups: adm cdrom dialout dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/x264/+bug/1906091/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1881447] Re: package ca-certificates 20180409 failed to install/upgrade: installed ca-certificates package post-installation script subprocess returned error exit status 1

2020-12-27 Thread Launchpad Bug Tracker
[Expired for ca-certificates (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: ca-certificates (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ca-certificates in Ubuntu.
https://bugs.launchpad.net/bugs/1881447

Title:
  package ca-certificates 20180409 failed to install/upgrade: installed
  ca-certificates package post-installation script subprocess returned
  error exit status 1

Status in ca-certificates package in Ubuntu:
  Expired

Bug description:
  Upgrading from 16.04 LTS to 18.04 LTS. This is a WEB server with a
  Let's Encrypt certificate.

  ProblemType: Package
  DistroRelease: Ubuntu 18.04
  Package: ca-certificates 20180409
  ProcVersionSignature: Ubuntu 4.4.0-179.209-generic 4.4.219
  Uname: Linux 4.4.0-179-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.15
  Architecture: amd64
  Date: Sat May 30 20:00:50 2020
  ErrorMessage: installed ca-certificates package post-installation script 
subprocess returned error exit status 1
  InstallationDate: Installed on 2017-09-16 (987 days ago)
  InstallationMedia: Ubuntu-Server 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
  PackageArchitecture: all
  Python3Details: /usr/bin/python3.6, Python 3.6.9, python3-minimal, 
3.6.7-1~18.04
  PythonDetails: /usr/bin/python2.7, Python 2.7.17, python-minimal, 2.7.15~rc1-1
  RelatedPackageVersions:
   dpkg 1.19.0.5ubuntu2.3
   apt  1.6.12ubuntu0.1
  SourcePackage: ca-certificates
  Title: package ca-certificates 20180409 failed to install/upgrade: installed 
ca-certificates package post-installation script subprocess returned error exit 
status 1
  UpgradeStatus: Upgraded to bionic on 2020-05-31 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ca-certificates/+bug/1881447/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1901053] Re: apt preferences files do nothing re: apt-cache policy

2020-12-27 Thread Avery Freeman
Someone on askubuntu.com recommended I start the preference file with a
CR (start preference description on the 2nd line in the file), include a
trailing CR (empty line at end of file) and be very particular to not
include any extra space characters after any of the attributes.  This
appears to have worked.

I have not seen this documented anywhere, or what it relates to, but it
might be something that could be clarified with an update in
documentation.

Thanks for your consideration.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apt in Ubuntu.
https://bugs.launchpad.net/bugs/1901053

Title:
  apt preferences files do nothing re: apt-cache policy

Status in apt package in Ubuntu:
  Expired

Bug description:
  apt-cache policy does not reflect priority set in
  /etc/apt/preferences.d/*

  avery@ChubbyChipmunk:/etc/apt/preferences.d$ apt-cache policy

  Package files:
   100 /var/lib/dpkg/status
   release a=now
   500 http://ppa.launchpad.net/webupd8team/y-ppa-manager/ubuntu focal/main 
amd64 Packages
   release v=20.04,o=LP-PPA-webupd8team-y-ppa-manager,a=focal,n=focal,l=Y 
PPA Manager,c=main,b=amd64
   origin ppa.launchpad.net
   500 http://ppa.launchpad.net/system76/pop/ubuntu groovy/main amd64 Packages
   release v=20.10,o=LP-PPA-system76-pop,a=groovy,n=groovy,l=Pop!_OS 
PPA,c=main,b=amd64
   origin ppa.launchpad.net
   500 https://packagecloud.io/slacktechnologies/slack/debian jessie/main amd64 
Packages
   release 
v=1,o=packagecloud.io/slacktechnologies/slack,a=jessie,n=jessie,l=slack,c=main,b=amd64
   origin packagecloud.io
   500 http://apt.pop-os.org/proprietary groovy/main amd64 Packages
   release v=20.10,o=system76,a=groovy,n=groovy,l=System76,c=main,b=amd64
   origin apt.pop-os.org
   500 https://download.mono-project.com/repo/ubuntu stable-focal/main amd64 
Packages
   release 
v=20.04,o=XamarinFocal,a=stable-focal,n=focal,l=Xamarin-Stable-Focal,c=main,b=amd64
   origin download.mono-project.com
   500 https://packages.microsoft.com/ubuntu/18.04/prod bionic/main amd64 
Packages
   release o=microsoft-ubuntu-bionic-prod 
bionic,a=bionic,n=bionic,l=microsoft-ubuntu-bionic-prod bionic,c=main,b=amd64
   origin packages.microsoft.com
   500 http://ppa.launchpad.net/linuxuprising/shutter/ubuntu groovy/main amd64 
Packages
   release 
v=20.10,o=LP-PPA-linuxuprising-shutter,a=groovy,n=groovy,l=Shutter screenshot 
tool and dependencies,c=main,b=amd64
   origin ppa.launchpad.net
   500 http://dl.google.com/linux/chrome/deb stable/main amd64 Packages
   release v=1.0,o=Google LLC,a=stable,n=stable,l=Google,c=main,b=amd64
   origin dl.google.com
   500 
https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_20.04
  Packages
   release 
o=obs://build.opensuse.org/devel:kubic:libcontainers:stable/xUbuntu_20.04,n=xUbuntu_20.04,l=devel:kubic:libcontainers:stable,c=
   origin download.opensuse.org
   500 http://packages.microsoft.com/ubuntu/18.04/mssql-server-2019 bionic/main 
amd64 Packages
   release o=mssql-server-2019-bionic 
bionic,a=bionic,n=bionic,l=mssql-server-2019-bionic bionic,c=main,b=amd64
   origin packages.microsoft.com
   500 http://mirrors.vcea.wsu.edu/ubuntu groovy-proposed/main i386 Packages
   release 
v=20.10,o=Ubuntu,a=groovy-proposed,n=groovy,l=Ubuntu,c=main,b=i386
   origin mirrors.vcea.wsu.edu
   500 http://mirrors.vcea.wsu.edu/ubuntu groovy-proposed/main amd64 Packages
   release 
v=20.10,o=Ubuntu,a=groovy-proposed,n=groovy,l=Ubuntu,c=main,b=amd64
   origin mirrors.vcea.wsu.edu
   500 http://mirrors.vcea.wsu.edu/ubuntu groovy-proposed/multiverse i386 
Packages
   release 
v=20.10,o=Ubuntu,a=groovy-proposed,n=groovy,l=Ubuntu,c=multiverse,b=i386
   origin mirrors.vcea.wsu.edu
   500 http://mirrors.vcea.wsu.edu/ubuntu groovy-proposed/multiverse amd64 
Packages
   release 
v=20.10,o=Ubuntu,a=groovy-proposed,n=groovy,l=Ubuntu,c=multiverse,b=amd64
   origin mirrors.vcea.wsu.edu
   500 http://mirrors.vcea.wsu.edu/ubuntu groovy-proposed/restricted i386 
Packages
   release 
v=20.10,o=Ubuntu,a=groovy-proposed,n=groovy,l=Ubuntu,c=restricted,b=i386
   origin mirrors.vcea.wsu.edu
   500 http://mirrors.vcea.wsu.edu/ubuntu groovy-proposed/restricted amd64 
Packages
   release 
v=20.10,o=Ubuntu,a=groovy-proposed,n=groovy,l=Ubuntu,c=restricted,b=amd64
   origin mirrors.vcea.wsu.edu
   500 http://mirrors.vcea.wsu.edu/ubuntu groovy-proposed/universe i386 Packages
   release 
v=20.10,o=Ubuntu,a=groovy-proposed,n=groovy,l=Ubuntu,c=universe,b=i386
   origin mirrors.vcea.wsu.edu
   500 http://mirrors.vcea.wsu.edu/ubuntu groovy-proposed/universe amd64 
Packages
   release 
v=20.10,o=Ubuntu,a=groovy-proposed,n=groovy,l=Ubuntu,c=universe,b=amd64
   origin mirrors.vcea.wsu.edu
   500 http://mirrors.vcea.wsu.edu/ubuntu groovy-security/universe i386 Packages
  

[Touch-packages] [Bug 1909347] Re: Keyboard layout used in the second place breaks keymap

2020-12-27 Thread Gunnar Hjalmarsson
I have Ubuntu MATE on a VM and could reproduce your first issue there,
i.e. it's present only when Neo 2 is not first in the list of keyboard
layouts.

Consequently this is probably an xkeyboard-config issue and not specific
to gnome-control-center. And the issue is reasonably upstream in nature.

I found this open upstream issue regarding Neo 2:

https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-
config/-/issues/14

Can't tell if it's related to your observations. If not I would
recommend you to file a new issue upstream. If you do, please post a
link to it here for tracking purposes.

** Bug watch added: 
gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/issues #14
   https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/issues/14

** Package changed: gnome-control-center (Ubuntu) => xkeyboard-config
(Ubuntu)

** Changed in: xkeyboard-config (Ubuntu)
   Importance: Undecided => Low

** Changed in: xkeyboard-config (Ubuntu)
   Status: Incomplete => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xkeyboard-config in
Ubuntu.
https://bugs.launchpad.net/bugs/1909347

Title:
  Keyboard layout used in the second place breaks keymap

Status in xkeyboard-config package in Ubuntu:
  Confirmed

Bug description:
  It's hard to really summarize the issue here. If you use the Neo2
  layout somewhere, the keymap becomes garbled in a very specific way
  (see below). I am not really sure if it affects other keyboard layouts
  or what happens internally. I have selected gnome-control-center as
  the affected package, because this is, where it all starts. There are
  two issues, which are somehow connected.

  
  Reproduction steps (first issue):

  1. Open "Region & Language Settings" in gnome-control-center
  2. In "Input Sources" use "German (no dead keys)" in the FIRST place and 
"German (Neo 2)" in the second place (order matters!)
  3. Open your favorite text editor
  4. Use Super+Alt+Backspace to change to the Neo2 layout
  5. Press and hold the Mod4 key (right of Left Shift) and 3.
  6. You get a 3, expected would be №.

  Reproduction steps (second issue):

  1. Go back to the "Region & Language Settings" and now use "German (Neo 2)" 
in the FIRST place and "German (no dead keys)" in the SECOND place
  2. Open Chromium and open any web page (it does not work with any other 
application)
  3. Use Super+Alt+Backspace to change to "German (no dead keys)" layout
  4. Press Ctrl+F
  5. Instead of the In-Page-Search opening, you go to the search bar, which 
means that the input is interpreted as Ctrl+E instead of Ctrl+F. If you press 
Ctrl+I (which is Ctrl+F on Neo2), the search bar opens, which means that even 
though Neo2 is selected, the old keymap is still somehow active.

  Info:

  1) Release: Ubuntu 20.04.1 LTS
  2) gnome-control-center: Installed: 1:3.36.4-0ubuntu2
  3/4) See reproduction steps above

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xkeyboard-config/+bug/1909347/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1909347] [NEW] Keyboard layout used in the second place breaks keymap

2020-12-27 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

It's hard to really summarize the issue here. If you use the Neo2 layout
somewhere, the keymap becomes garbled in a very specific way (see
below). I am not really sure if it affects other keyboard layouts or
what happens internally. I have selected gnome-control-center as the
affected package, because this is, where it all starts. There are two
issues, which are somehow connected.


Reproduction steps (first issue):

1. Open "Region & Language Settings" in gnome-control-center
2. In "Input Sources" use "German (no dead keys)" in the FIRST place and 
"German (Neo 2)" in the second place (order matters!)
3. Open your favorite text editor
4. Use Super+Alt+Backspace to change to the Neo2 layout
5. Press and hold the Mod4 key (right of Left Shift) and 3.
6. You get a 3, expected would be №.

Reproduction steps (second issue):

1. Go back to the "Region & Language Settings" and now use "German (Neo 2)" in 
the FIRST place and "German (no dead keys)" in the SECOND place
2. Open Chromium and open any web page (it does not work with any other 
application)
3. Use Super+Alt+Backspace to change to "German (no dead keys)" layout
4. Press Ctrl+F
5. Instead of the In-Page-Search opening, you go to the search bar, which means 
that the input is interpreted as Ctrl+E instead of Ctrl+F. If you press Ctrl+I 
(which is Ctrl+F on Neo2), the search bar opens, which means that even though 
Neo2 is selected, the old keymap is still somehow active.

Info:

1) Release: Ubuntu 20.04.1 LTS
2) gnome-control-center: Installed: 1:3.36.4-0ubuntu2
3/4) See reproduction steps above

** Affects: xkeyboard-config (Ubuntu)
 Importance: Low
 Status: Confirmed

-- 
Keyboard layout used in the second place breaks keymap
https://bugs.launchpad.net/bugs/1909347
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to xkeyboard-config in Ubuntu.

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1906091] Re: libx264-148 libx264-152 conflict segmentation fault SIGSEGV

2020-12-27 Thread Dmitry
Rico Tzschichholz, thank you very much, you are absolutely correct. There was 
OpenCV 3.3 installed on my system, it remained after update from 16.04 to 18.04 
with all its 16.04 dependencies.
I removed OpenCV 3.3 and everything got fixed.
Thanks a lot for help.
The issue is fixed and may be closed.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to x264 in Ubuntu.
https://bugs.launchpad.net/bugs/1906091

Title:
  libx264-148 libx264-152 conflict segmentation fault SIGSEGV

Status in x264 package in Ubuntu:
  New

Bug description:
  In my app I have segfault due to conflict of libx264-148 vs libx264-152.
  I use gstreamer and libopencv_videoio in my project.
  System is Ubuntu 18.04.5

  The problem is that versions of libx264 get mixed due to implicit
  linking.

  Libraries are linked like this:
  gstreamer -> x264enc -> libx264-152
  libopencv_videoio -> libavcodec-ffmpeg.so.56 -> libx264-148

  Both opencv-based code and gstreamer-based code works well if used
  separately.

  At the top of backtrace I see:
  Thread 13 (Thread 0x7f28e2066700 (LWP 26012)):
  #0  0x7f290181c853 in x264_add8x8_idct_avx2.skip_prologue () at 
/usr/lib/x86_64-linux-gnu/libx264.so.152 // 152
  #1  0x7f2927a93f55 in x264_nal_encode () at 
/usr/lib/x86_64-linux-gnu/libx264.so.148 // 148
  #2  0x7f2927af866c in  () at /usr/lib/x86_64-linux-gnu/libx264.so.148
  #3  0x7f2927b0143b in x264_encoder_headers () at 
/usr/lib/x86_64-linux-gnu/libx264.so.148

  If I use objdump I can find x264_add8x8_idct_avx2.skip_prologue in
  both libx264-148 and libx264-152

  
  Here is example code which fails (C++ needed):

  int main (int argc, char *argv[])
  {
App *app = _app;
GError *error = NULL;
GstBus *bus;
GstCaps *caps;

gst_init (, );

auto cap = cv::VideoCapture("videoplayback.mp4");
cv::Mat f;
cap.read(f);
cv::imshow("f", f);

GST_DEBUG_CATEGORY_INIT (appsrc_pipeline_debug, "appsrc-pipeline", 0,
"appsrc pipeline example");

app->loop = g_main_loop_new (NULL, TRUE);
app->timer = g_timer_new();

app->pipeline = gst_parse_launch(R"(filesrc
  location=videoplayback.mp4 ! decodebin ! videoconvert ! x264enc
  byte-stream=true threads=1
  tune=zerolatency bitrate=400 key-
  int-max=50 option-string="force-cfr=1" !
  video/x-h264,profile=baseline,stream-format="byte-stream" !
  h264parse ! mpegtsmux ! hlssink
  location="/tmp/data%06d.ts" max-files=100
  playlist-length=10 playlist-location="/tmp/kek"
  target-duration=10 playlist-root=".")", NULL);

g_assert (app->pipeline);

bus = gst_pipeline_get_bus (GST_PIPELINE (app->pipeline));
g_assert(bus);

gst_bus_add_watch (bus, (GstBusFunc) bus_message, app);

caps = gst_caps_new_simple ("video/x-raw-rgb",
  "bpp",G_TYPE_INT,8,
  "depth",G_TYPE_INT,8,
   "width", G_TYPE_INT, 640,
   "height", G_TYPE_INT, 480,
   NULL);
gst_element_set_state (app->pipeline, GST_STATE_PLAYING);

g_main_loop_run (app->loop);

GST_DEBUG ("stopping");

gst_element_set_state (app->pipeline, GST_STATE_NULL);

gst_object_unref (bus);
g_main_loop_unref (app->loop);

return 0;
  }


  
  How can I solve this? PLease help!
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.18
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 18.04
  InstallationDate: Installed on 2016-05-07 (1667 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: x264 2:0.152.2854+gite9a5903-2
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.15.0-118.119-generic 4.15.18
  Tags: bionic third-party-packages
  Uname: Linux 4.15.0-118-generic x86_64
  UpgradeStatus: Upgraded to bionic on 2019-12-28 (338 days ago)
  UserGroups: adm cdrom dialout dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/x264/+bug/1906091/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1887968] Re: Pairing with Bluetooth LE mice fails on a Huawei Matebook 13 AMD laptop with Realtek RTL8822CE Wifi/Bluetooth combo adapter

2020-12-27 Thread Olivier V
Not solved in 5.10.3

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1887968

Title:
  Pairing with Bluetooth LE mice fails on a Huawei Matebook 13 AMD
  laptop with Realtek RTL8822CE Wifi/Bluetooth combo adapter

Status in Linux:
  Confirmed
Status in bluez package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm using Ubuntu 20.04 on a Huawei Matebook 13 AMD laptop which seems
  to use a Realtek RTL8822CE Wifi/Bluetooth combo adapter.

  I've been unsuccessful to pair with 2 different bluetooth mice.
  However bluetooth seems to work with other devices. I'm under the
  impression that this problem only happens with Bluetooth LE devices.

  Trying to pair using bluetoothctl fails with the
  org.bluez.Error.AuthenticationCanceled error:

  [bluetooth]# pair E5:5B:67:2A:09:76
  Attempting to pair with E5:5B:67:2A:09:76
  [CHG] Device E5:5B:67:2A:09:76 Connected: yes
  [CHG] Device E5:5B:67:2A:09:76 Connected: no
  Failed to pair: org.bluez.Error.AuthenticationCanceled

  A quick google search for org.bluez.Error.AuthenticationCanceled
  reported nothing relevant.

  Running btmon while trying to pair with the device gives me the
  following:

  Bluetooth monitor ver 5.53
  = Note: Linux version 5.4.0-40-generic (x86_64)   
0.998188
  = Note: Bluetooth subsystem version 2.22  
0.998193
  = New Index: E8:6F:38:9C:2B:3C (Primary,USB,hci0) 
 [hci0] 0.998194
  = Open Index: E8:6F:38:9C:2B:3C   
 [hci0] 0.998195
  = Index Info: E8:6F:38:9C:2B:3C (Realtek Semiconductor Corporation)   
 [hci0] 0.998197
  @ MGMT Open: bluetoothd (privileged) version 1.14 
   {0x0001} 0.998198
  @ MGMT Open: btmon (privileged) version 1.14  
   {0x0002} 0.998310
  @ MGMT Command: Pair Device (0x0019) plen 8   
{0x0001} [hci0] 8.162442
  LE Address: E5:5B:67:2A:09:76 (Static)
  Capability: KeyboardDisplay (0x04)
  < HCI Command: LE Set Extended Scan Parameters (0x08|0x0041) plen 8   
  #1 [hci0] 8.162527
  Own address type: Public (0x00)
  Filter policy: Ignore not in white list (0x01)
  PHYs: 0x01
  Entry 0: LE 1M
Type: Passive (0x00)
Interval: 60.000 msec (0x0060)
Window: 30.000 msec (0x0030)
  > HCI Event: Command Complete (0x0e) plen 4   
  #2 [hci0] 8.284618
LE Set Extended Scan Parameters (0x08|0x0041) ncmd 2
  Status: Success (0x00)
  < HCI Command: LE Set Extended Scan Enable (0x08|0x0042) plen 6   
  #3 [hci0] 8.284654
  Extended scan: Enabled (0x01)
  Filter duplicates: Enabled (0x01)
  Duration: 0 msec (0x)
  Period: 0.00 sec (0x)
  > HCI Event: Command Complete (0x0e) plen 4   
  #4 [hci0] 8.289616
LE Set Extended Scan Enable (0x08|0x0042) ncmd 2
  Status: Success (0x00)
  > HCI Event: LE Meta Event (0x3e) plen 52 
  #5 [hci0] 8.343614
LE Extended Advertising Report (0x0d)
  Num reports: 1
  Entry 0
Event type: 0x0013
  Props: 0x0013
Connectable
Scannable
Use legacy advertising PDUs
  Data status: Complete
Legacy PDU Type: ADV_IND (0x0013)
Address type: Random (0x01)
Address: E5:5B:67:2A:09:76 (Static)
Primary PHY: LE 1M
Secondary PHY: No packets
SID: no ADI field (0xff)
TX power: 127 dBm
RSSI: -20 dBm (0xec)
Periodic advertising invteral: 0.00 msec (0x)
Direct address type: Public (0x00)
Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
Data length: 0x1a
  03 19 c2 03 02 01 05 03 03 12 18 0e 09 52 61 

[Touch-packages] [Bug 1909395] Re: Text area for failed package downloads doesn't resize with the window

2020-12-27 Thread Chris Guiver
This is a MINT specific bug, refer
https://github.com/linuxmint/gdebi/issues/13


** Bug watch added: github.com/linuxmint/gdebi/issues #13
   https://github.com/linuxmint/gdebi/issues/13

** Changed in: gdebi (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gdebi in Ubuntu.
https://bugs.launchpad.net/bugs/1909395

Title:
  Text area for failed package downloads doesn't resize with the window

Status in gdebi package in Ubuntu:
  Invalid

Bug description:
  Choose a mirror that's likely to be down, then attempt to install a
  .deb with gdebi-gtk.

  The text area that shows dependencies that failed to fetch, is limited
  to 3 lines in height, and doesn't resize with the window.

  Running Mint 20 Ulyana. Not sure what version of gdebi-gtk this is, as
  `gdebi-gtk --version` doesn't say.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdebi/+bug/1909395/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1909395] Re: Text area for failed package downloads doesn't resize with the window

2020-12-27 Thread Chris Guiver
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Please execute the following command only once, as it will automatically
gather debugging information, in a terminal:

apport-collect 1909395

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

Please note: `ubuntu-bug`, `apport` & bug reporting tools are provided
with Ubuntu by default, many require manual addition for some releases
of downstream OSes based on Ubuntu (eg. Linux Mint). You should check
with your distribution first.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gdebi in Ubuntu.
https://bugs.launchpad.net/bugs/1909395

Title:
  Text area for failed package downloads doesn't resize with the window

Status in gdebi package in Ubuntu:
  New

Bug description:
  Choose a mirror that's likely to be down, then attempt to install a
  .deb with gdebi-gtk.

  The text area that shows dependencies that failed to fetch, is limited
  to 3 lines in height, and doesn't resize with the window.

  Running Mint 20 Ulyana. Not sure what version of gdebi-gtk this is, as
  `gdebi-gtk --version` doesn't say.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdebi/+bug/1909395/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1909395] [NEW] Text area for failed package downloads doesn't resize with the window

2020-12-27 Thread Dan Dascalescu
Public bug reported:

Choose a mirror that's likely to be down, then attempt to install a .deb
with gdebi-gtk.

The text area that shows dependencies that failed to fetch, is limited
to 3 lines in height, and doesn't resize with the window.

Running Mint 20 Ulyana. Not sure what version of gdebi-gtk this is, as
`gdebi-gtk --version` doesn't say.

** Affects: gdebi (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "gdebi-gtk download failure textarea doesn't resize.png"
   
https://bugs.launchpad.net/bugs/1909395/+attachment/5447182/+files/gdebi-gtk%20download%20failure%20textarea%20doesn%27t%20resize.png

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gdebi in Ubuntu.
https://bugs.launchpad.net/bugs/1909395

Title:
  Text area for failed package downloads doesn't resize with the window

Status in gdebi package in Ubuntu:
  New

Bug description:
  Choose a mirror that's likely to be down, then attempt to install a
  .deb with gdebi-gtk.

  The text area that shows dependencies that failed to fetch, is limited
  to 3 lines in height, and doesn't resize with the window.

  Running Mint 20 Ulyana. Not sure what version of gdebi-gtk this is, as
  `gdebi-gtk --version` doesn't say.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdebi/+bug/1909395/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1909390] [NEW] package libudev1 245.4-4ubuntu3.3 failed to install/upgrade: trying to overwrite shared '/usr/share/doc/libudev1/changelog.Debian.gz', which is different from othe

2020-12-27 Thread Deepak Mishra
Public bug reported:

Can't overwrite shared directory

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: libudev1 245.4-4ubuntu3.3
ProcVersionSignature: Ubuntu 5.4.0-58.64-generic 5.4.73
Uname: Linux 5.4.0-58-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.14
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sat Dec 26 22:19:09 2020
DpkgTerminalLog:
 Preparing to unpack .../libudev1_245.4-4ubuntu3.3_amd64.deb ...
 Unpacking libudev1:amd64 (245.4-4ubuntu3.3) over (245.4-4ubuntu3.1) ...
 dpkg: error processing archive 
/var/cache/apt/archives/libudev1_245.4-4ubuntu3.3_amd64.deb (--unpack):
  trying to overwrite shared '/usr/share/doc/libudev1/changelog.Debian.gz', 
which is different from other instances of package libudev1:amd64
ErrorMessage: trying to overwrite shared 
'/usr/share/doc/libudev1/changelog.Debian.gz', which is different from other 
instances of package libudev1:amd64
InstallationDate: Installed on 2020-12-11 (15 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.2
SourcePackage: systemd
Title: package libudev1 245.4-4ubuntu3.3 failed to install/upgrade: trying to 
overwrite shared '/usr/share/doc/libudev1/changelog.Debian.gz', which is 
different from other instances of package libudev1:amd64
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: systemd (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package focal

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1909390

Title:
  package libudev1 245.4-4ubuntu3.3 failed to install/upgrade: trying to
  overwrite shared '/usr/share/doc/libudev1/changelog.Debian.gz', which
  is different from other instances of package libudev1:amd64

Status in systemd package in Ubuntu:
  New

Bug description:
  Can't overwrite shared directory

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: libudev1 245.4-4ubuntu3.3
  ProcVersionSignature: Ubuntu 5.4.0-58.64-generic 5.4.73
  Uname: Linux 5.4.0-58-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.14
  Architecture: amd64
  CasperMD5CheckResult: skip
  Date: Sat Dec 26 22:19:09 2020
  DpkgTerminalLog:
   Preparing to unpack .../libudev1_245.4-4ubuntu3.3_amd64.deb ...
   Unpacking libudev1:amd64 (245.4-4ubuntu3.3) over (245.4-4ubuntu3.1) ...
   dpkg: error processing archive 
/var/cache/apt/archives/libudev1_245.4-4ubuntu3.3_amd64.deb (--unpack):
trying to overwrite shared '/usr/share/doc/libudev1/changelog.Debian.gz', 
which is different from other instances of package libudev1:amd64
  ErrorMessage: trying to overwrite shared 
'/usr/share/doc/libudev1/changelog.Debian.gz', which is different from other 
instances of package libudev1:amd64
  InstallationDate: Installed on 2020-12-11 (15 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: N/A
  RelatedPackageVersions:
   dpkg 1.19.7ubuntu3
   apt  2.0.2ubuntu0.2
  SourcePackage: systemd
  Title: package libudev1 245.4-4ubuntu3.3 failed to install/upgrade: trying to 
overwrite shared '/usr/share/doc/libudev1/changelog.Debian.gz', which is 
different from other instances of package libudev1:amd64
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1909390/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp