mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-16 13:51:37 +08:00
lavf/mpeg: Support demuxing HEVC in mpeg-ps.
This commit is contained in:
@@ -544,6 +544,9 @@ redo:
|
||||
} else if (es_type == STREAM_TYPE_VIDEO_H264) {
|
||||
codec_id = AV_CODEC_ID_H264;
|
||||
type = AVMEDIA_TYPE_VIDEO;
|
||||
} else if (es_type == STREAM_TYPE_VIDEO_HEVC) {
|
||||
codec_id = AV_CODEC_ID_HEVC;
|
||||
type = AVMEDIA_TYPE_VIDEO;
|
||||
} else if (es_type == STREAM_TYPE_AUDIO_AC3) {
|
||||
codec_id = AV_CODEC_ID_AC3;
|
||||
type = AVMEDIA_TYPE_AUDIO;
|
||||
|
Reference in New Issue
Block a user