aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h263.c
AgeCommit message (Collapse)AuthorFilesLines
2015-12-09new_register_dissector -> register_dissector for dissector directory.Michael Mann1-1/+1
Change-Id: Ie39ef054a4a942687bd079f3a4d8c2cc55d5f22c Reviewed-on: https://code.wireshark.org/review/12485 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-23register_dissector -> new_register_dissectorMichael Mann1-3/+5
Change-Id: Ic368dd8e83cf39e0c934da0ae2744778e2d54ce6 Reviewed-on: https://code.wireshark.org/review/12050 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-12-21Cleanup use of #includes in non-generated epan/dissector/*.cBill Meier1-1/+0
Specifically: - Set packet.h to be the first wireshark #include after config.h and "system" #includes. packet.h added as an #include in some cases when missing. - Remove some #includes included (directly/indirectly) in packet.h. E.g., glib.h. (Done only for those files including packet.h). - As needed, move "system" #includes to be after config.h and before wireshark #includes. - Rework various #include file specifications for consistency. - Misc. Change-Id: Ifaa1a14b50b69fbad38ea4838a49dfe595c54c95 Reviewed-on: https://code.wireshark.org/review/5923 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Bill Meier <wmeier@newsguy.com>
2014-10-02Add editor modelines & adjust indentation/whitespace as needed.Bill Meier1-47/+60
Change-Id: Ice2d93632cd42dfcef3bfbf0e15f2a8a147278fc Reviewed-on: https://code.wireshark.org/review/4433 Reviewed-by: Bill Meier <wmeier@newsguy.com>
2014-06-28convert to proto_tree_add_subtree[_format]Michael Mann1-4/+2
Change-Id: Ia7014003a3cff5181295172978d6c613c3b83b0b Reviewed-on: https://code.wireshark.org/review/2676 Tested-by: Michael Mann <mmann78@netscape.net> 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-15Fix [-Wmissing-prototypes]Jakub Zawadzki1-0/+2
svn path=/trunk/; revision=54135
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-04-01At least 4 bytes is required to check PSC, fixes bug ↵Anders Broman1-0/+7
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6996 svn path=/trunk/; revision=41876
2011-10-24Fix encoding arg for various fcn calls:Bill Meier1-2/+2
- proto_tree_add_bits_item - proto_tree_add_bits_ret_val - proto_tree_add_bitmask - tvb_get_bits - tvb_get_bits16 - tvb_get_bits24 - tvb_get_bits32 - tvb_get_bits64 svn path=/trunk/; revision=39539
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-16/+16
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-16Do some conversions of proto_tree_add_item() 'encoding' arg.Bill Meier1-1/+1
(previously missed). 57 FT_BOOLEAN: FALSE-->ENC_BIG_ENDIAN 31 FT_BOOLEAN: TRUE-->ENC_LITTLE_ENDIAN 10 FT_BYTES: ENC_BIG_ENDIAN-->ENC_NA 1 FT_BYTES: ENC_LITTLE_ENDIAN-->ENC_NA 21 FT_BYTES: FALSE-->ENC_NA 2 FT_BYTES: TRUE-->ENC_NA 2 FT_IPXNET: ENC_BIG_ENDIAN-->ENC_NA 6 FT_IPv6: ENC_BIG_ENDIAN-->ENC_NA 1 FT_IPv6: FALSE-->ENC_NA 6 FT_NONE: ENC_BIG_ENDIAN-->ENC_NA 19 FT_NONE: FALSE-->ENC_NA 3 FT_NONE: TRUE-->ENC_NA 1 FT_STRING: ENC_BIG_ENDIAN-->ENC_ASCII|ENC_NA 1 FT_STRING: ENC_LITTLE_ENDIAN-->ENC_ASCII|ENC_NA 5 FT_STRING: FALSE-->ENC_ASCII|ENC_NA 1 FT_STRING: TRUE-->ENC_ASCII|ENC_NA 4 FT_STRINGZ: ENC_NA-->ENC_ASCII|ENC_NA 8 FT_STRINGZ: FALSE-->ENC_ASCII|ENC_NA 1 FT_INT32: FALSE-->ENC_BIG_ENDIAN 1 FT_INT32: TRUE-->ENC_LITTLE_ENDIAN 11 FT_UINT8: 0-->ENC_BIG_ENDIAN 111 FT_UINT8: FALSE-->ENC_BIG_ENDIAN 17 FT_UINT8: TRUE-->ENC_LITTLE_ENDIAN 1 FT_UINT16: 0-->ENC_BIG_ENDIAN 68 FT_UINT16: FALSE-->ENC_BIG_ENDIAN 18 FT_UINT16: TRUE-->ENC_LITTLE_ENDIAN 4 FT_UINT24: FALSE-->ENC_BIG_ENDIAN 70 FT_UINT32: FALSE-->ENC_BIG_ENDIAN 1 FT_UINT32: TRUE-->ENC_LITTLE_ENDIAN 4 FT_UINT64: FALSE-->ENC_BIG_ENDIAN 1 FT_UINT64: TRUE-->ENC_LITTLE_ENDIAN 1 FT_UINT_STRING: FALSE-->ENC_ASCII|ENC_BIG_ENDIAN svn path=/trunk/; revision=39442
2011-09-27Get rid of check_col, while at it set ENC.Anders Broman1-35/+34
svn path=/trunk/; revision=39164
2010-04-06#include <string.h> not needed.Bill Meier1-2/+0
svn path=/trunk/; revision=32410
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
svn path=/trunk/; revision=32367
2009-09-24* Prefer col_append_str instead of col_append_fstr for constant stringsKovarththanan Rajaratnam1-4/+2
* Remove check_col guards svn path=/trunk/; revision=30127
2009-09-24Don't guard col_append_str with check_colKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=30125
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-11/+11
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2009-03-16Removed some non-ASCII characters.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=27736
2009-01-26Make it a bit clearer witch bits are displayed.Anders Broman1-0/+19
svn path=/trunk/; revision=27301
2008-11-11Fix a couple of wrong offsets, terminate dissecton where it is incomplete.Anders Broman1-9/+11
svn path=/trunk/; revision=26752
2008-08-25#include <prefs.h> not req'dBill Meier1-2/+0
svn path=/trunk/; revision=26089
2008-04-15bitmasks are unnecessary with proto_tree_add_bits_*, and indeed break filtering.Richard van der Hoff1-16/+16
svn path=/trunk/; revision=25050
2008-04-15rename protocol to h263Richard van der Hoff1-1/+1
svn path=/trunk/; revision=25048
2008-04-15split the various bits of h263 dissector into separate files, so that weRichard van der Hoff1-871/+42
can see which fields belong to which bit. Also make sure that we can filter on the fields in the rfc2190 dissector by actually parsing them even when tree=NULL. svn path=/trunk/; revision=25046
2008-01-21Add a preferense to decode a dynamic payload type as H263-1998/H263-2000Anders Broman1-17/+52
svn path=/trunk/; revision=24153
2007-10-11Implement some of the minor possible speed improvment patches.Anders Broman1-1/+1
svn path=/trunk/; revision=23150
2007-05-18Use proto_tree_add_bits_ret_val and proto_tree_add_bits_item().Anders Broman1-249/+39
svn path=/trunk/; revision=21830
2007-04-28Revert some private experiments checked in by misstake.Anders Broman1-8/+7
svn path=/trunk/; revision=21609
2007-04-28From Gavin Heer:Anders Broman1-7/+8
Here's a patch that decodes MMS(Manufacturing Messaging Specification) when transported over COTP/TPKT/TCP. Previously, MMS would only be decoded if the OSI Presentation Layers were present. Now MMS/COTP/TPKT/TCP is dissected. With a change to use more functions from packet-ber svn path=/trunk/; revision=21608
2007-04-13fix some gcc warnings and put dissectors in CLEAN_DISSECTOR_SRCSebastien Tandel1-3/+3
svn path=/trunk/; revision=21410
2007-04-10Dissect a bit more of the h263 data.Anders Broman1-34/+230
svn path=/trunk/; revision=21376
2007-04-10Get rid of some more g_assert*()'s in the dissectors. There are a fewJeff Morriss1-1/+1
remaining that I'm not sure exactly what to do with at the moment: the one in packet-frame probably should be there, the others probably shouldn't but they also should never fail unless there's a compile or build problem (AFAICS). svn path=/trunk/; revision=21367
2007-04-02Add commentsAnders Broman1-7/+139
svn path=/trunk/; revision=21299
2007-03-31Common dissection of GOB.Anders Broman1-46/+201
svn path=/trunk/; revision=21292
2007-03-31Properly NULL terminate string (str[0]='\0';)Anders Broman1-42/+72
Let h263_proto_tree_add_bits return the value Find more starcodes Add picture type to Info col(P/I) svn path=/trunk/; revision=21288
2007-03-30Fix more warningsStephen Fisher1-1/+1
svn path=/trunk/; revision=21286
2007-03-28warning fixesJörg Mayer1-6/+5
svn path=/trunk/; revision=21239
2007-03-27Common handling of picture layer.Anders Broman1-99/+402
svn path=/trunk/; revision=21229
2007-03-06More dissecting of H.263 according to RFC 4629.Anders Broman1-5/+204
svn path=/trunk/; revision=20983
2007-02-28Start dissecting H.263 according to RFC 4629.Anders Broman1-7/+179
svn path=/trunk/; revision=20949
2006-06-02From Richard van der Hoff:Anders Broman1-3/+20
Q.931:I mprovesthe dissection of Q.931 Channel Identification information elements, by using proper (filterable) header fields rather than text tree items. H253: make the h.263 dissector dissect the group-of-block number which comes after a GOB start code. svn path=/trunk/; revision=18323
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2005-11-13Fix Bug 566 H.263: in display filters, ftype bit masked by sbit Anders Broman1-1/+1
svn path=/trunk/; revision=16500
2005-10-02From Jeff SnyderAnders Broman1-21/+63
00-iax.diff Modifications to the IAX2 dissector so that it offers desegmentation to subdissectors using the same API as TCP offers (pinfo->desegment_len etc) 01-amr.diff Modifications to the AMR dissector to allow AMR IF2 data to be dissected via call_dissector() from packet-h223.c. This patch also causes the AMR dissector to append the frame type string to the info column, so that the info column shows what protocols an H.223 frame contains. 02-h263-data.diff Modifications to packet-h263.c to separate the dissection of h.263 RTP encpasulation from the dissection of the actual h.263 data. The data dissection functions are added as a second dissector. This data-only dissector is used to dissect the video channel in our h.223 streams. As with the AMR modification, this makes the H.263 dissector append to the info column. svn path=/trunk/; revision=16068
2005-09-17Move a pile of protocol-related headers from the top-level sourceGuy Harris1-2/+2
directory to the epan directory. Some of them should perhaps ultimately be moved to epan/dissectors, if they pertain only to stuff exported by a particular dissector. Fix Gerald's e-mail address in files we're moving. svn path=/trunk/; revision=15844
2005-03-22Dissect part of the payload.Anders Broman1-7/+194
svn path=/trunk/; revision=13862
2005-03-16Dissect a bit of the payload to, Picture start block and temporal ref.Anders Broman1-7/+50
svn path=/trunk/; revision=13776
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+541
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410