aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dvb_chartbl.c
AgeCommit message (Collapse)AuthorFilesLines
2015-09-15Eliminate proto_tree_add_text from odds and ends.Michael Mann1-1/+1
A few calls in the epan directory and comments in the ui directory Change-Id: Ia8f8830ac6909ab94d3a03283bfd173456bc9718 Reviewed-on: https://code.wireshark.org/review/10492 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-01-07Replace bytes_to_ep_str_punct with wmem equivalent.Michael Mann1-2/+1
Change-Id: I8aa7d7374db94685fd875cbf358c3bfbc83f3255 Reviewed-on: https://code.wireshark.org/review/6370 Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-12-21Support all the DVB ISO 8859-x encodings, now that we have ENC_ valuesGuy Harris1-0/+33
for all of them. svn path=/trunk/; revision=54346
2013-12-20use small negative values for the error definesMartin Kaiser1-1/+1
(such constants are signed ints by default) svn path=/trunk/; revision=54300
2013-12-20we can display UTF-8 encoded ISO 10646 BMP without any mappingMartin Kaiser1-0/+3
svn path=/trunk/; revision=54299
2013-12-20add Asian DVB-SI character tablesMartin Kaiser1-27/+41
minor whitespace changes svn path=/trunk/; revision=54298
2013-12-20simplify the defines for DVB chartablesMartin Kaiser1-35/+22
there's no need for their values to match the values in the DVB-SI spec we can summarize basic and extended table definitions svn path=/trunk/; revision=54297
2013-12-19Rename a couple of to_str functions to have ep_ in the name. This makes itEvan Huus1-1/+1
obvious that the returned string is ephemeral, and opens up the original names in the API for versions that take a wmem pool (and thus can work in any scope). svn path=/trunk/; revision=54249
2013-12-18Add charset table for ISO/IEC 8859-9 (ENC_ISO_8859_9)Jakub Zawadzki1-0/+4
svn path=/trunk/; revision=54239
2013-12-16when the default character table is used,Martin Kaiser1-9/+9
don't add af hf entry with len 0 to the tree add a text element instead svn path=/trunk/; revision=54145
2013-12-15use ISO 8859-5 for DVB-SIMartin Kaiser1-0/+4
svn path=/trunk/; revision=54133
2013-12-15improve DVB-SI string handlingMartin Kaiser1-33/+56
new function dvb_add_chartbl() adds a tree entry for an encoding use FT_BTYES as type for encoding hfs string hfs for DVB-SI strings must have STR_UNICODE, not BASE_NONE make dvb_string_encoding_vals[] internal to dvb_chartbl.c svn path=/trunk/; revision=54128
2013-12-15remove a line that sneaked in from some testsMartin Kaiser1-1/+0
svn path=/trunk/; revision=54116
2013-12-15as requested, move the functions/defines for DVB character tablesMartin Kaiser1-0/+246
to separate files svn path=/trunk/; revision=54113