Browse Source

lavfi-showfiltfmts: fix typo that segfaulted haiku.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.10
Michael Niedermayer 13 years ago
parent
commit
719a576f04
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tools/lavfi-showfiltfmts.c

+ 1
- 1
tools/lavfi-showfiltfmts.c View File

@@ -28,7 +28,7 @@ static void print_formats(AVFilterContext *filter_ctx)
int i, j;

#define PRINT_FMTS(inout, outin, INOUT) \
for (i = 0; i < filter_ctx->input_count; i++) { \
for (i = 0; i < filter_ctx->inout##put_count; i++) { \
if (filter_ctx->inout##puts[i]->type == AVMEDIA_TYPE_VIDEO) { \
AVFilterFormats *fmts = \
filter_ctx->inout##puts[i]->outin##_formats; \


Loading…
Cancel
Save