diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-05-12 17:38:47 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-05-16 13:16:05 +0200 |
commit | 4d4098da009c8340997b8d1abedbf2062e4aa991 (patch) | |
tree | 2a2398b82a55b8a5feeaa87ece2fefbd5c83036d /libavfilter/internal.h | |
parent | 183596fa081cc283c61ba3c0bb8386f9139f761f (diff) | |
download | ffmpeg-4d4098da009c8340997b8d1abedbf2062e4aa991.tar.gz |
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 'libavfilter/internal.h')
-rw-r--r-- | libavfilter/internal.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 034a6c9cab..f06151f90c 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -132,16 +132,6 @@ int ff_parse_sample_format(int *ret, const char *arg, void *log_ctx); int ff_parse_channel_layout(int64_t *ret, const char *arg, void *log_ctx); /** - * Parse a packing format or a corresponding integer representation. - * - * @param ret integer pointer to where the value should be written - * @param arg string to parse - * @param log_ctx log context - * @return 0 in case of success, a negative AVERROR code on error - */ -int ff_parse_packing_format(int *ret, const char *arg, void *log_ctx); - -/** * Pass video frame along and keep an internal reference for later use. */ static inline void ff_null_start_frame_keep_ref(AVFilterLink *inlink, |