summaryrefslogtreecommitdiffstats
path: root/libavfilter/avfilter.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/avfilter.h
parent8dd0e87d7b9b17d613c646c396c7b7c1a6293111 (diff)
downloadffmpeg-streaming-720ec620123bf12f1effc311285f8f501c40e5c6.zip
ffmpeg-streaming-720ec620123bf12f1effc311285f8f501c40e5c6.tar.gz
lavfi: drop deprecated and disabled packing API
It was deprecated and removed after the recent 2->3 major bump.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 0a10e9e..7704e81 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -113,9 +113,6 @@ typedef struct AVFilterBufferRefAudioProps {
uint64_t channel_layout; ///< channel layout of audio buffer
int nb_samples; ///< number of audio samples per channel
int sample_rate; ///< audio buffer sample rate
-#if FF_API_PACKING
- int planar; ///< audio buffer - planar or packed
-#endif
} AVFilterBufferRefAudioProps;
/**
@@ -299,13 +296,6 @@ AVFilterFormats *avfilter_make_all_formats(enum AVMediaType type);
*/
extern const int64_t avfilter_all_channel_layouts[];
-#if FF_API_PACKING
-/**
- * Return a list of all audio packing formats.
- */
-AVFilterFormats *avfilter_make_all_packing_formats(void);
-#endif
-
/**
* Return a format list which contains the intersection of the formats of
* a and b. Also, all the references of a, all the references of b, and
@@ -350,10 +340,6 @@ attribute_deprecated
void avfilter_set_common_sample_formats(AVFilterContext *ctx, AVFilterFormats *formats);
attribute_deprecated
void avfilter_set_common_channel_layouts(AVFilterContext *ctx, AVFilterFormats *formats);
-#if FF_API_PACKING
-attribute_deprecated
-void avfilter_set_common_packing_formats(AVFilterContext *ctx, AVFilterFormats *formats);
-#endif
/**
* @}
@@ -656,13 +642,6 @@ struct AVFilterContext {
struct AVFilterCommand *command_queue;
};
-#if FF_API_PACKING
-enum AVFilterPacking {
- AVFILTER_PACKED = 0,
- AVFILTER_PLANAR,
-};
-#endif
-
/**
* A link between two filters. This contains pointers to the source and
* destination filters between which this link exists, and the indexes of
@@ -697,10 +676,6 @@ struct AVFilterLink {
#else
int sample_rate; ///< samples per second
#endif
-#if FF_API_PACKING
- int planar; ///< agreed upon packing mode of audio buffers. true if planar.
-#endif
-
int format; ///< agreed upon media format
/**
@@ -713,11 +688,6 @@ struct AVFilterLink {
AVFilterFormats *in_formats;
AVFilterFormats *out_formats;
-#if FF_API_PACKING
- AVFilterFormats *in_packing;
- AVFilterFormats *out_packing;
-#endif
-
/**
* The buffer reference currently being sent across the link by the source
* filter. This is used internally by the filter system to allow
OpenPOWER on IntegriCloud