Skip to content

Commit

Permalink
[coreUtils] Fix copy mode for vp9
Browse files Browse the repository at this point in the history
  • Loading branch information
eumagga0x2a committed Jun 2, 2019
1 parent 1eb4add commit ffc5718
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions avidemux_core/ADM_coreUtils/src/ADM_coreCodecMapping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ AVCodecID ADM_codecIdFindByFourcc(const char *fcc)
{
return AV_CODEC_ID_MPEG4;
}
if (isVP9Compatible (fid) == 1)
{
return AV_CODEC_ID_VP9;
}

uint32_t nb=sizeof(ffCodec)/sizeof(ffVideoCodec);
for(int i=0;i<nb;i++)
Expand Down

0 comments on commit ffc5718

Please sign in to comment.