Home | History | Annotate | Download | only in parser
      1 /*
      2  INTEL CONFIDENTIAL
      3  Copyright 2009 Intel Corporation All Rights Reserved.
      4  The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material contains trade secrets and proprietary and confidential information of Intel or its suppliers and licensors. The Material is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intels prior express written permission.
      5 
      6  No license under any patent, copyright, trade secret or other intellectual property right is granted to or conferred upon you by disclosure or delivery of the Materials, either expressly, by implication, inducement, estoppel or otherwise. Any license under such intellectual property rights must be express and approved by Intel in writing.
      7  */
      8 
      9 #ifndef VBP_MP42_PARSER_H
     10 #define VBP_MP42_PARSER_H
     11 
     12 /*
     13  * setup parser's entry points
     14  */
     15 
     16 uint32 vbp_init_parser_entries_mp42(vbp_context *pcontext);
     17 
     18 
     19 /*
     20  * allocate query data
     21  */
     22 uint32 vbp_allocate_query_data_mp42(vbp_context *pcontext);
     23 
     24 /*
     25  * free query data
     26  */
     27 uint32 vbp_free_query_data_mp42(vbp_context *pcontext);
     28 
     29 /*
     30  * parse initialization data
     31  */
     32 uint32 vbp_parse_init_data_mp42(vbp_context *pcontext);
     33 
     34 /*
     35  * parse start code.
     36  */
     37 uint32 vbp_parse_start_code_mp42(vbp_context *pcontext);
     38 
     39 /*
     40  * process parsing result
     41  */
     42 uint32 vbp_process_parsing_result_mp42(vbp_context *pcontext, int list_index);
     43 
     44 /*
     45  * query parsing result
     46  */
     47 uint32 vbp_populate_query_data_mp42(vbp_context *pcontext);
     48 
     49 #endif /*VBP_MP42_PARSER_H*/
     50