From 248a1aa54c08b14e8bd49147f59d954c41b5b3a3 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Sun, 30 Nov 2003 19:04:56 +0000
Subject: [PATCH] 4th frame type ...

Originally committed as revision 2547 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/rv10.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index 790f2366dc7..87b4a8b3a2a 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -344,6 +344,7 @@ static int rv20_decode_picture_header(MpegEncContext *s)
     i= get_bits(&s->gb, 2);
     switch(i){
     case 0: s->pict_type= I_TYPE; break;
+    case 1: s->pict_type= I_TYPE; break; //hmm ...
     case 2: s->pict_type= P_TYPE; break;
     case 3: s->pict_type= B_TYPE; break;
     default: 
-- 
GitLab