mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/webmdashenc: Use AVCodecDescriptors for codec names
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
cbea58b2b3
commit
1719c7f5db
|
@ -61,17 +61,7 @@ typedef struct WebMDashMuxContext {
|
||||||
|
|
||||||
static const char *get_codec_name(int codec_id)
|
static const char *get_codec_name(int codec_id)
|
||||||
{
|
{
|
||||||
switch (codec_id) {
|
return avcodec_descriptor_get(codec_id)->name;
|
||||||
case AV_CODEC_ID_VP8:
|
|
||||||
return "vp8";
|
|
||||||
case AV_CODEC_ID_VP9:
|
|
||||||
return "vp9";
|
|
||||||
case AV_CODEC_ID_VORBIS:
|
|
||||||
return "vorbis";
|
|
||||||
case AV_CODEC_ID_OPUS:
|
|
||||||
return "opus";
|
|
||||||
}
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static double get_duration(AVFormatContext *s)
|
static double get_duration(AVFormatContext *s)
|
||||||
|
|
Loading…
Reference in New Issue