comparison flvdec.c @ 1101:c4ad0ac3f999 libavformat

Flash Screen Video decoder (fourcc:FSV1)
author banan
date Thu, 01 Jun 2006 07:31:59 +0000
parents 99ae26ee88d8
children d89d7ef290da
comparison
equal deleted inserted replaced
1100:d4793a811695 1101:c4ad0ac3f999
181 } 181 }
182 }else{ 182 }else{
183 st->codec->codec_type = CODEC_TYPE_VIDEO; 183 st->codec->codec_type = CODEC_TYPE_VIDEO;
184 switch(flags & 0xF){ 184 switch(flags & 0xF){
185 case 2: st->codec->codec_id = CODEC_ID_FLV1; break; 185 case 2: st->codec->codec_id = CODEC_ID_FLV1; break;
186 case 3: st->codec->codec_id = CODEC_ID_FLASHSV; break;
186 default: 187 default:
187 av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flags & 0xf); 188 av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flags & 0xf);
188 st->codec->codec_tag= flags & 0xF; 189 st->codec->codec_tag= flags & 0xF;
189 } 190 }
190 } 191 }