diff options
author | Stefano Sabatini | 2012-05-12 17:38:47 +0200 |
---|---|---|
committer | Stefano Sabatini | 2012-05-16 13:16:05 +0200 |
commit | 4d4098da009c8340997b8d1abedbf2062e4aa991 (patch) | |
tree | 2a2398b82a55b8a5feeaa87ece2fefbd5c83036d /tools | |
parent | 183596fa081cc283c61ba3c0bb8386f9139f761f (diff) |
lavfi: drop planar/packed negotiation support
The planar/packed switch and the packing_formats list is no longer
required, since the planar/packed information is now stored in the sample
format enum.
This is technically a major API break, possibly it should be not too
painful as we marked the audio filtering API as unstable.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lavfi-showfiltfmts.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/lavfi-showfiltfmts.c b/tools/lavfi-showfiltfmts.c index b33ff1c36e..6d09cc122c 100644 --- a/tools/lavfi-showfiltfmts.c +++ b/tools/lavfi-showfiltfmts.c @@ -54,14 +54,6 @@ static void print_formats(AVFilterContext *filter_ctx) printf(#INOUT "PUT[%d] %s: chlayout:%s\n", \ i, filter_ctx->filter->inout##puts[i].name, buf); \ } \ - \ - fmts = filter_ctx->inout##puts[i]->outin##_packing; \ - for (j = 0; j < fmts->format_count; j++) { \ - printf(#INOUT "PUT[%d] %s: packing:%s\n", \ - i, filter_ctx->filter->inout##puts[i].name, \ - fmts->formats[j] == AVFILTER_PACKED ? \ - "packed" : "planar"); \ - } \ } \ } \ |