mirror of https://git.ffmpeg.org/ffmpeg.git
swf(dec): replace CODEC_ID with AV_CODEC_ID
This commit is contained in:
parent
e0aa5e772b
commit
15c71dfd03
|
@ -23,7 +23,7 @@
|
|||
#include "internal.h"
|
||||
|
||||
const AVCodecTag ff_swf_codec_tags[] = {
|
||||
{ CODEC_ID_FLV1, 0x02 },
|
||||
{ CODEC_ID_VP6F, 0x04 },
|
||||
{ CODEC_ID_NONE, 0 },
|
||||
{ AV_CODEC_ID_FLV1, 0x02 },
|
||||
{ AV_CODEC_ID_VP6F, 0x04 },
|
||||
{ AV_CODEC_ID_NONE, 0 },
|
||||
};
|
||||
|
|
|
@ -24,12 +24,12 @@
|
|||
#include "swf.h"
|
||||
|
||||
static const AVCodecTag swf_audio_codec_tags[] = {
|
||||
{ CODEC_ID_PCM_S16LE, 0x00 },
|
||||
{ CODEC_ID_ADPCM_SWF, 0x01 },
|
||||
{ CODEC_ID_MP3, 0x02 },
|
||||
{ CODEC_ID_PCM_S16LE, 0x03 },
|
||||
// { CODEC_ID_NELLYMOSER, 0x06 },
|
||||
{ CODEC_ID_NONE, 0 },
|
||||
{ AV_CODEC_ID_PCM_S16LE, 0x00 },
|
||||
{ AV_CODEC_ID_ADPCM_SWF, 0x01 },
|
||||
{ AV_CODEC_ID_MP3, 0x02 },
|
||||
{ AV_CODEC_ID_PCM_S16LE, 0x03 },
|
||||
// { AV_CODEC_ID_NELLYMOSER, 0x06 },
|
||||
{ AV_CODEC_ID_NONE, 0 },
|
||||
};
|
||||
|
||||
static int get_swf_tag(AVIOContext *pb, int *len_ptr)
|
||||
|
|
Loading…
Reference in New Issue