Browse Source

lavf: deprecate av_apply_bitstream_filters

tags/n3.1
Rodger Combs 9 years ago
parent
commit
150e5e13b1
No known key found for this signature in database GPG Key ID: E3E54DCDCD3CB843
2 changed files with 7 additions and 0 deletions
  1. +3
    -0
      libavformat/avformat.h
  2. +4
    -0
      libavformat/utils.c

+ 3
- 0
libavformat/avformat.h View File

@@ -2873,8 +2873,11 @@ int avformat_queue_attached_pictures(AVFormatContext *s);
* @return >=0 on success;
* AVERROR code on failure
*/
#if FF_API_OLD_BSF
attribute_deprecated
int av_apply_bitstream_filters(AVCodecContext *codec, AVPacket *pkt,
AVBitStreamFilterContext *bsfc);
#endif

/**
* @}


+ 4
- 0
libavformat/utils.c View File

@@ -5006,6 +5006,8 @@ int ff_stream_add_bitstream_filter(AVStream *st, const char *name, const char *a
return 1;
}

#if FF_API_OLD_BSF
FF_DISABLE_DEPRECATION_WARNINGS
int av_apply_bitstream_filters(AVCodecContext *codec, AVPacket *pkt,
AVBitStreamFilterContext *bsfc)
{
@@ -5059,6 +5061,8 @@ int av_apply_bitstream_filters(AVCodecContext *codec, AVPacket *pkt,
}
return ret;
}
FF_ENABLE_DEPRECATION_WARNINGS
#endif

void ff_format_io_close(AVFormatContext *s, AVIOContext **pb)
{


Loading…
Cancel
Save