![]() |
MHEG5
18.9.0
MHEG5 Documentation
|
Miscellaneous functions for decoding ASN.1 types. More...
#include <stdio.h>
#include "vpa1_sys.h"
#include "vpa1_tgs.h"
#include "fpa1_syn.h"
#include "asn1_sys.h"
#include "mh5base.h"
#include "asn1_createExtras.h"
Go to the source code of this file.
Functions | |
asnErr | asn1_decodeInteger (fpa1_syntaxList *listPtr, MHEG5Int *decodedInt) |
decodes Integer type More... | |
asnErr | asn1_decodeBoolean (fpa1_syntaxList *listPtr, MHEG5Bool *decodedBool) |
decodes Boolean type MHEG5TRUE and MHEG5FALSE macros are used for consistency. will default to MHEG5TRUE if it fails. More... | |
asnErr | asn1_decodeOctetString (fpa1_syntaxList *listPtr, MHEG5String *decodedString) |
decodes String type More... | |
asnErr | asn1_decodeColour (fpa1_syntaxList *listPtr, MHEG5Colour *colour) |
Decodes Colour class. Refer to MHEG5 Specification (ISO/IEC 13522-2:1996), Appendix A, section [A.43] for details of ASN.1 representation. More... | |
Miscellaneous functions for decoding ASN.1 types.
Definition in file asn1_createExtras.c.
asnErr asn1_decodeBoolean | ( | fpa1_syntaxList * | listPtr, |
MHEG5Bool * | decodedBool | ||
) |
decodes Boolean type MHEG5TRUE and MHEG5FALSE macros are used for consistency. will default to MHEG5TRUE if it fails.
decodes Boolean type MHEG5TRUE and MHEG5FALSE macros are used for consistency. will default to MHEG5TRUE if it fails... is this safe???
listPtr | pointer to current fpa1_syntaxList item |
decodedBool | Pointer to boolean type being decoded. |
Definition at line 78 of file asn1_createExtras.c.
asnErr asn1_decodeColour | ( | fpa1_syntaxList * | listPtr, |
MHEG5Colour * | colour | ||
) |
Decodes Colour class. Refer to MHEG5 Specification (ISO/IEC 13522-2:1996), Appendix A, section [A.43] for details of ASN.1 representation.
listPtr | pointer to current fpa1_syntaxList item |
colour | Pointer to Colour class being decoded. |
Definition at line 149 of file asn1_createExtras.c.
asnErr asn1_decodeInteger | ( | fpa1_syntaxList * | listPtr, |
MHEG5Int * | decodedInt | ||
) |
decodes Integer type
listPtr | pointer to current fpa1_syntaxList item |
decodedInt | Pointer to integer type being decoded. |
Definition at line 53 of file asn1_createExtras.c.
asnErr asn1_decodeOctetString | ( | fpa1_syntaxList * | listPtr, |
MHEG5String * | decodedString | ||
) |
decodes String type
listPtr | pointer to current fpa1_syntaxList item |
decodedString | Pointer to string type being decoded. |
Definition at line 118 of file asn1_createExtras.c.