File tree Expand file tree Collapse file tree 3 files changed +0
-26
lines changed Expand file tree Collapse file tree 3 files changed +0
-26
lines changed Original file line number Diff line number Diff line change @@ -213,17 +213,6 @@ static void link_free(AVFilterLink **link)
213
213
av_freep (link );
214
214
}
215
215
216
- #if FF_API_LINK_PUBLIC
217
- void avfilter_link_free (AVFilterLink * * link )
218
- {
219
- link_free (link );
220
- }
221
- int avfilter_config_links (AVFilterContext * filter )
222
- {
223
- return ff_filter_config_links (filter );
224
- }
225
- #endif
226
-
227
216
static void update_link_current_pts (FilterLinkInternal * li , int64_t pts )
228
217
{
229
218
AVFilterLink * const link = & li -> l .pub ;
Original file line number Diff line number Diff line change @@ -447,20 +447,6 @@ struct AVFilterLink {
447
447
int avfilter_link (AVFilterContext * src , unsigned srcpad ,
448
448
AVFilterContext * dst , unsigned dstpad );
449
449
450
- #if FF_API_LINK_PUBLIC
451
- /**
452
- * @deprecated this function should never be called by users
453
- */
454
- attribute_deprecated
455
- void avfilter_link_free (AVFilterLink * * link );
456
-
457
- /**
458
- * @deprecated this function should never be called by users
459
- */
460
- attribute_deprecated
461
- int avfilter_config_links (AVFilterContext * filter );
462
- #endif
463
-
464
450
#define AVFILTER_CMD_FLAG_ONE 1 ///< Stop once a filter understood the command (for target=all for example), fast filters are favored automatically
465
451
#define AVFILTER_CMD_FLAG_FAST 2 ///< Only execute command when its fast (like a video out that supports contrast adjustment in hw)
466
452
Original file line number Diff line number Diff line change 35
35
* the public API and may change, break or disappear at any time.
36
36
*/
37
37
38
- #define FF_API_LINK_PUBLIC (LIBAVFILTER_VERSION_MAJOR < 11)
39
38
#define FF_API_BUFFERSINK_OPTS (LIBAVFILTER_VERSION_MAJOR < 11)
40
39
#define FF_API_CONTEXT_PUBLIC (LIBAVFILTER_VERSION_MAJOR < 11)
41
40
You can’t perform that action at this time.
0 commit comments