FS-11425: [mod_av] fix build on older libav w/o H265

This commit is contained in:
Mike Jerris 2019-02-27 16:01:39 -07:00 committed by Andrey Volk
parent 76d11001ce
commit ebac830f52
1 changed files with 2 additions and 0 deletions

View File

@ -435,7 +435,9 @@ const char *get_profile_name(int codec_id)
case AV_CODEC_ID_H263: return "H263";
case AV_CODEC_ID_H263P: return "H263+";
case AV_CODEC_ID_H264: return "H264";
#ifdef AV_CODEC_ID_H265
case AV_CODEC_ID_H265: return "H265";
#endif
}
return "NONE";