AVMediaType AVMEDIA_TYPE_NB 是 FFmpeg 中的一个枚举值,它代表数据包数量未知的流格式。具体而言,它通常被用于 PCM 音频数据流。 示例代码: if (stream->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && stream->codecpar->codec_id == AV_CODEC_ID_PCM_S16BE && stream->codecpar->channels == 2) { // Do something with the PCM audio stream } else if (stream->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && stream->codecpar->codec_id == AV_CODEC_ID_H264) { // Do something with the H.264 video stream } else if (stream->codecpar->codec_type == AVMEDIA_TYPE_NB) { // Do something with the unknown stream type }