Skip to content

Commit

Permalink
VideoCodecInfo に H264 の値を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Jun 18, 2024
1 parent e480976 commit 9bdabb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/video_codec_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ struct VideoCodecInfo {
info.vp9_decoders.push_back(Type::Software);
info.av1_encoders.push_back(Type::Software);
info.av1_decoders.push_back(Type::Software);
info.h264_encoders.push_back(Type::Software);

return info;
}
Expand All @@ -222,6 +223,7 @@ struct VideoCodecInfo {
info.vp9_decoders.push_back(Type::Software);
info.av1_encoders.push_back(Type::Software);
info.av1_decoders.push_back(Type::Software);
info.h264_encoders.push_back(Type::Software);

return info;
}
Expand Down Expand Up @@ -357,11 +359,9 @@ struct VideoCodecInfo {
info.vp8_decoders.push_back(Type::Software);
info.vp9_encoders.push_back(Type::Software);
info.vp9_decoders.push_back(Type::Software);

#if !defined(__arm__) || defined(__aarch64__) || defined(__ARM_NEON__)
info.av1_encoders.push_back(Type::Software);
info.av1_decoders.push_back(Type::Software);
#endif
info.h264_encoders.push_back(Type::Software);

return info;
}
Expand Down

0 comments on commit 9bdabb3

Please sign in to comment.