projects
/
platform
/
upstream
/
gst-plugins-bad.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a622a6
)
dvb-descriptor: Fix multilingual service name parsing
author
Edward Hervey
<bilboed@bilboed.com>
Thu, 29 May 2014 10:29:52 +0000
(12:29 +0200)
committer
Edward Hervey
<bilboed@bilboed.com>
Thu, 29 May 2014 12:29:15 +0000
(14:29 +0200)
the provider and service name was inverted
gst-libs/gst/mpegts/gst-dvb-descriptor.c
patch
|
blob
|
history
diff --git
a/gst-libs/gst/mpegts/gst-dvb-descriptor.c
b/gst-libs/gst/mpegts/gst-dvb-descriptor.c
index
2874e86
..
2376b2e
100644
(file)
--- a/
gst-libs/gst/mpegts/gst-dvb-descriptor.c
+++ b/
gst-libs/gst/mpegts/gst-dvb-descriptor.c
@@
-1530,13
+1530,13
@@
gst_mpegts_descriptor_parse_dvb_multilingual_service_name (const
i += 3;
len = *data;
- item->
service
_name =
+ item->
provider
_name =
get_encoding_and_convert ((const gchar *) data + 1, len);
data += len + 1;
i += len + 1;
len = *data;
- item->
provider
_name =
+ item->
service
_name =
get_encoding_and_convert ((const gchar *) data + 1, len);
data += len + 1;
i += len + 1;