Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 707676a4 authored by Yushin Cho's avatar Yushin Cho
Browse files

codec2: Fix comment about B_FRAME.

B_FRAME is bidirectionally predicted frame, either forward or backward or together of them thru blending.

Change-Id: Ie7aebe00fcb929cb00abe0fd25b32ec625cbb0f0
parent 853afb7d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1673,7 +1673,7 @@ C2ENUM(C2Config::picture_type_t, uint32_t,
    SYNC_FRAME = (1 << 0),  ///< sync frame, e.g. IDR
    I_FRAME    = (1 << 1),  ///< intra frame that is completely encoded
    P_FRAME    = (1 << 2),  ///< inter predicted frame from previous frames
    B_FRAME    = (1 << 3),  ///< backward predicted (out-of-order) frame
    B_FRAME    = (1 << 3),  ///< bidirectional predicted (out-of-order) frame
)

/**