Browse Source

ffmpeg: Fix bistream typos

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.2
Michael Niedermayer 8 years ago
parent
commit
9083e044f1
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      ffmpeg.c
  2. +1
    -1
      ffmpeg_opt.c

+ 1
- 1
ffmpeg.c View File

@@ -2648,7 +2648,7 @@ static int init_output_bsfs(OutputStream *ost)

ret = av_bsf_init(ctx);
if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Error initializing bistream filter: %s\n",
av_log(NULL, AV_LOG_ERROR, "Error initializing bitstream filter: %s\n",
ost->bsf_ctx[i]->filter->name);
return ret;
}


+ 1
- 1
ffmpeg_opt.c View File

@@ -1345,7 +1345,7 @@ static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, e

ret = av_bsf_alloc(filter, &ost->bsf_ctx[ost->nb_bitstream_filters]);
if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Error allocating a bistream filter context\n");
av_log(NULL, AV_LOG_ERROR, "Error allocating a bitstream filter context\n");
exit_program(1);
}



Loading…
Cancel
Save