[vlc-commits] decoder: the max DPB size for AV1 is 10 frames

Steve Lhomme git at videolan.org
Fri Nov 9 12:08:26 CET 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri Oct  5 15:04:32 2018 +0200| [262c8ff02fd82cb0504a26d4ea532daa8a1a455a] | committer: Steve Lhomme

decoder: the max DPB size for AV1 is 10 frames

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=262c8ff02fd82cb0504a26d4ea532daa8a1a455a
---

 src/input/decoder.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/input/decoder.c b/src/input/decoder.c
index fe824bb274..7ca4c87fcf 100644
--- a/src/input/decoder.c
+++ b/src/input/decoder.c
@@ -581,6 +581,9 @@ static int vout_update_format( decoder_t *p_dec )
         case VLC_CODEC_DIRAC: /* FIXME valid ? */
             dpb_size = 18;
             break;
+        case VLC_CODEC_AV1:
+            dpb_size = 10;
+            break;
         case VLC_CODEC_VP5:
         case VLC_CODEC_VP6:
         case VLC_CODEC_VP6F:



More information about the vlc-commits mailing list