Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/smjpeg.c')
-rw-r--r--libavformat/smjpeg.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/smjpeg.c b/libavformat/smjpeg.c
index 82316ed448..4edf5e8ac4 100644
--- a/libavformat/smjpeg.c
+++ b/libavformat/smjpeg.c
@@ -29,12 +29,12 @@
#include "smjpeg.h"
const AVCodecTag ff_codec_smjpeg_video_tags[] = {
- { CODEC_ID_MJPEG, MKTAG('J', 'F', 'I', 'F') },
- { CODEC_ID_NONE, 0 },
+ { AV_CODEC_ID_MJPEG, MKTAG('J', 'F', 'I', 'F') },
+ { AV_CODEC_ID_NONE, 0 },
};
const AVCodecTag ff_codec_smjpeg_audio_tags[] = {
- { CODEC_ID_ADPCM_IMA_SMJPEG, MKTAG('A', 'P', 'C', 'M') },
- { CODEC_ID_PCM_S16LE, MKTAG('N', 'O', 'N', 'E') },
- { CODEC_ID_NONE, 0 },
+ { AV_CODEC_ID_ADPCM_IMA_SMJPEG, MKTAG('A', 'P', 'C', 'M') },
+ { AV_CODEC_ID_PCM_S16LE, MKTAG('N', 'O', 'N', 'E') },
+ { AV_CODEC_ID_NONE, 0 },
};