Browse Source

TT#14008 fix compiler warning from libavformat

Change-Id: Ia22a0c66c511973e935d5a4e40a744d8f92eb19e
changes/53/21253/1
Richard Fuchs 8 years ago
parent
commit
4d2d788c43
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      recording-daemon/mix.c

+ 1
- 1
recording-daemon/mix.c View File

@ -92,7 +92,7 @@ int mix_config(mix_t *mix, const format_t *format) {
// amix // amix
err = "no amix filter available"; err = "no amix filter available";
AVFilter *flt = avfilter_get_by_name("amix");
const AVFilter *flt = avfilter_get_by_name("amix");
if (!flt) if (!flt)
goto err; goto err;


Loading…
Cancel
Save