Changeset 83b4671 in ffmpeg


Ignore:
Timestamp:
Dec 17, 2011, 5:09:13 AM (13 years ago)
Author:
Michael Niedermayer <michaelni@gmx.at>
Branches:
master
Children:
6aeba3fd
Parents:
75f2cc51
Message:

lavc: Check codec_ids against insertion/removial typos

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libavcodec/utils.c

    r75f2cc51 r83b4671  
    3434#include "libavutil/samplefmt.h"
    3535#include "libavutil/dict.h"
     36#include "libavutil/avassert.h"
    3637#include "avcodec.h"
    3738#include "dsputil.h"
     
    13751376unsigned avcodec_version( void )
    13761377{
     1378    av_assert0(CODEC_ID_V410==164);
     1379    av_assert0(CODEC_ID_PCM_S8_PLANAR==65563);
     1380    av_assert0(CODEC_ID_ADPCM_G722==69660);
     1381    av_assert0(CODEC_ID_BMV_AUDIO==86071);
     1382    av_assert0(CODEC_ID_SRT==94216);
     1383
    13771384  return LIBAVCODEC_VERSION_INT;
    13781385}
Note: See TracChangeset for help on using the changeset viewer.