mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-04 10:57:48 +00:00
Do not leave positive values undefined when negative are defined as error
Define positive return values as non errors and leave further meaning undefined This allows future extensions to use these values Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a6388616e8
commit
d5ec8ba7f2
18 changed files with 30 additions and 30 deletions
|
@ -89,7 +89,7 @@ static char *parse_link_name(const char **buf, void *log_ctx)
|
|||
* @param filt_name the name of the filter to create
|
||||
* @param args the arguments provided to the filter during its initialization
|
||||
* @param log_ctx the log context to use
|
||||
* @return 0 in case of success, a negative AVERROR code otherwise
|
||||
* @return >= 0 in case of success, a negative AVERROR code otherwise
|
||||
*/
|
||||
static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int index,
|
||||
const char *filt_name, const char *args, void *log_ctx)
|
||||
|
@ -152,7 +152,7 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
|
|||
* @param index an index which is assigned to the created filter
|
||||
* instance, and which is supposed to be unique for each filter
|
||||
* instance added to the filtergraph
|
||||
* @return 0 in case of success, a negative AVERROR code otherwise
|
||||
* @return >= 0 in case of success, a negative AVERROR code otherwise
|
||||
*/
|
||||
static int parse_filter(AVFilterContext **filt_ctx, const char **buf, AVFilterGraph *graph,
|
||||
int index, void *log_ctx)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue