sys/dvb/gstdvbsrc.c: Add adapter_name for bus message in ATSC case. Fixes #552536.

Original commit message from CVS:
patch by: Michael Krufky
* sys/dvb/gstdvbsrc.c:
Add adapter_name for bus message in ATSC case. Fixes #552536.
This commit is contained in:
Michael Krufky 2008-09-17 09:06:57 +00:00 committed by Zaheer Abbas Merali
parent 9294cda841
commit 07f3b573f5
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2008-09-17 Zaheer Abbas Merali <zaheerabbas at merali dot org>
patch by: Michael Krufky
* sys/dvb/gstdvbsrc.c:
Add adapter_name for bus message in ATSC case. Fixes #552536.
2008-09-15 Stefan Kost <ensonic@users.sf.net>
* ext/celt/gstceltenc.h:

View file

@ -756,7 +756,8 @@ gst_dvbsrc_open_frontend (GstDvbSrc * object)
case FE_ATSC:
adapter_desc = "ATSC";
adapter_structure = gst_structure_new ("dvb-adapter",
"type", G_TYPE_STRING, adapter_desc, NULL);
"type", G_TYPE_STRING, adapter_desc,
"name", G_TYPE_STRING, adapter_name, NULL);
break;
default:
g_error ("Unknown frontend type: %d", object->adapter_type);