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_H264_PARSER_H
     10 #define VBP_H264_PARSER_H
     11 
     12 /*
     13  * setup parser's entry points
     14  */
     15 uint32 vbp_init_parser_entries_h264(vbp_context *pcontext);
     16 
     17 /*
     18  * allocate query data
     19  */
     20 uint32 vbp_allocate_query_data_h264(vbp_context *pcontext);
     21 
     22 /*
     23  * free query data
     24  */
     25 uint32 vbp_free_query_data_h264(vbp_context *pcontext);
     26 
     27 /*
     28  * parse initialization data
     29  */
     30 uint32 vbp_parse_init_data_h264(vbp_context *pcontext);
     31 
     32 /*
     33  * parse start code. Only support lenght prefixed mode. Start
     34  * code prefixed is not supported.
     35  */
     36 uint32 vbp_parse_start_code_h264(vbp_context *pcontext);
     37 
     38 /*
     39  * process parsing result
     40  */
     41 uint32 vbp_process_parsing_result_h264(vbp_context *pcontext, int list_index);
     42 
     43 /*
     44  * query parsing result
     45  */
     46 uint32 vbp_populate_query_data_h264(vbp_context *pcontext);
     47 
     48 #endif /*VBP_H264_PARSER_H*/
     49