summaryrefslogtreecommitdiff
path: root/libavfilter/buffersink.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-06-26 00:52:30 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-06-26 11:40:21 +0200
commit720ec620123bf12f1effc311285f8f501c40e5c6 (patch)
tree53dfbe31fdfeb2415821ff89b9488f0db4f358b1 /libavfilter/buffersink.h
parent8dd0e87d7b9b17d613c646c396c7b7c1a6293111 (diff)
lavfi: drop deprecated and disabled packing API
It was deprecated and removed after the recent 2->3 major bump.
Diffstat (limited to 'libavfilter/buffersink.h')
-rw-r--r--libavfilter/buffersink.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/buffersink.h b/libavfilter/buffersink.h
index 93302e83c9..b895121a6d 100644
--- a/libavfilter/buffersink.h
+++ b/libavfilter/buffersink.h
@@ -46,9 +46,6 @@ AVBufferSinkParams *av_buffersink_params_alloc(void);
typedef struct {
const enum AVSampleFormat *sample_fmts; ///< list of allowed sample formats, terminated by AV_SAMPLE_FMT_NONE
const int64_t *channel_layouts; ///< list of allowed channel layouts, terminated by -1
-#if FF_API_PACKING
- const int *packing_fmts; ///< list of allowed packing formats
-#endif
} AVABufferSinkParams;
/**