私はHM-16
とScalable HM 12.3
を使用しています。画像グループ構造をHEVC HMエンコーダの適切な画像構造に変換する
私は以下のようにこのGOP命令を持っています。ご覧のとおり、スライスタイプごとにQP値があります。
Encode Order Type POC QP
0 I-SLICE 0 23
1 P-SLICE 3 26
2 B-SLICE 2 27
3 b-SLICE 1 28
4 P-SLICE 6 26
5 B-SLICE 5 27
6 b-SLICE 4 28
そして私は、私はQPoffset CbQPoffset CrQPoffset QPfactor tcOffsetDiv2 betaOffsetDiv2 temporal_id #ref_pics_active #ref_pics reference pictures predict deltaRPS #ref_idcs reference idcs
を定義する必要があり、次のようなコードに変換します。
# Type POC QPoffset CbQPoffset CrQPoffset QPfactor tcOffsetDiv2 betaOffsetDiv2 temporal_id #ref_pics_active #ref_pics reference pictures predict deltaRPS #ref_idcs reference idcs
Frame1: P 16 1 0 0 0.6 0 0 0 2 3 -16 -24 -32 0
Frame2: B 8 2 0 0 0.2 0 0 1 2 3 -8 -16 8 1 8 4 1 1 0 1
あなたはそれを変換するのを手伝ってもらえますか?
GOP内のBフレームまたはBフレームの数を定義する方法はありますか。