Browse Source

asrc_aevalsrc: prefer av_strtok() over strtok_r()

tags/n0.9
Stefano Sabatini 14 years ago
parent
commit
3f20eada80
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/asrc_aevalsrc.c

+ 1
- 1
libavfilter/asrc_aevalsrc.c View File

@@ -93,7 +93,7 @@ static int init(AVFilterContext *ctx, const char *args, void *opaque)
/* parse expressions */
buf = args1;
i = 0;
while (expr = strtok_r(buf, ":", &bufptr)) {
while (expr = av_strtok(buf, ":", &bufptr)) {
if (i >= 8) {
av_log(ctx, AV_LOG_ERROR,
"More than 8 expressions provided, unsupported.\n");


Loading…
Cancel
Save