avcodec: remove deprecated codec id aliases

This commit is contained in:
Hendrik Leppkes 2015-09-05 21:13:44 +02:00
parent 76cac7ed45
commit 24e3bac52a
4 changed files with 0 additions and 411 deletions

View file

@ -2873,13 +2873,6 @@ unsigned avcodec_version(void)
av_assert0(AV_CODEC_ID_SRT==94216);
av_assert0(LIBAVCODEC_VERSION_MICRO >= 100);
#if FF_API_CODEC_ID
av_assert0(CODEC_ID_CLLC == AV_CODEC_ID_CLLC);
av_assert0(CODEC_ID_PCM_S8_PLANAR == AV_CODEC_ID_PCM_S8_PLANAR);
av_assert0(CODEC_ID_ADPCM_IMA_APC == AV_CODEC_ID_ADPCM_IMA_APC);
av_assert0(CODEC_ID_ILBC == AV_CODEC_ID_ILBC);
av_assert0(CODEC_ID_SRT == AV_CODEC_ID_SRT);
#endif
return LIBAVCODEC_VERSION_INT;
}