Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: third_party/libopenjpeg20/function_list.h

Issue 1416783002: Merge to M46: upgrade openjpeg to commit# cf352af (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@2490
Patch Set: Fix pdfium:168 since we are already half way there Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libopenjpeg20/event.h ('k') | third_party/libopenjpeg20/function_list.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * The copyright in this software is being made available under the 2-clauses 2 * The copyright in this software is being made available under the 2-clauses
3 * BSD License, included below. This software may be subject to other third 3 * BSD License, included below. This software may be subject to other third
4 * party and contributor rights, including patent rights, and no such rights 4 * party and contributor rights, including patent rights, and no such rights
5 * are granted under this license. 5 * are granted under this license.
6 * 6 *
7 * Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s .fr> 7 * Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s .fr>
8 * All rights reserved. 8 * All rights reserved.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 void opj_procedure_list_destroy(opj_procedure_list_t * p_list); 88 void opj_procedure_list_destroy(opj_procedure_list_t * p_list);
89 89
90 /** 90 /**
91 * Adds a new validation procedure. 91 * Adds a new validation procedure.
92 * 92 *
93 * @param p_validation_list the list of procedure to modify. 93 * @param p_validation_list the list of procedure to modify.
94 * @param p_procedure the procedure to add. 94 * @param p_procedure the procedure to add.
95 * 95 *
96 * @return OPJ_TRUE if the procedure could be added. 96 * @return OPJ_TRUE if the procedure could be added.
97 */ 97 */
98 OPJ_BOOL opj_procedure_list_add_procedure (opj_procedure_list_t * p_validation_l ist, opj_procedure p_procedure); 98 OPJ_BOOL opj_procedure_list_add_procedure (opj_procedure_list_t * p_validation_l ist, opj_procedure p_procedure, opj_event_mgr_t* p_manager);
99 99
100 /** 100 /**
101 * Gets the number of validation procedures. 101 * Gets the number of validation procedures.
102 * 102 *
103 * @param p_validation_list the list of procedure to modify. 103 * @param p_validation_list the list of procedure to modify.
104 * 104 *
105 * @return the number of validation procedures. 105 * @return the number of validation procedures.
106 */ 106 */
107 OPJ_UINT32 opj_procedure_list_get_nb_procedures (opj_procedure_list_t * p_valida tion_list); 107 OPJ_UINT32 opj_procedure_list_get_nb_procedures (opj_procedure_list_t * p_valida tion_list);
108 108
(...skipping 13 matching lines...) Expand all
122 * Clears the list of validation procedures. 122 * Clears the list of validation procedures.
123 * 123 *
124 * @param p_validation_list the list of procedure to clear. 124 * @param p_validation_list the list of procedure to clear.
125 * 125 *
126 */ 126 */
127 void opj_procedure_list_clear (opj_procedure_list_t * p_validation_list); 127 void opj_procedure_list_clear (opj_procedure_list_t * p_validation_list);
128 /*@}*/ 128 /*@}*/
129 129
130 #endif /* __FUNCTION_LIST_H */ 130 #endif /* __FUNCTION_LIST_H */
131 131
OLDNEW
« no previous file with comments | « third_party/libopenjpeg20/event.h ('k') | third_party/libopenjpeg20/function_list.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698