Changeset 798
- Timestamp:
- 02/06/08 01:08:04 (6 months ago)
- Files:
-
- branches/perian-1.1/FFusionCodec.c (modified) (1 diff)
- branches/perian-1.1/bitstream_info.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/perian-1.1/FFusionCodec.c
r797 r798 691 691 // XXX: at the moment ffmpeg can't handle interlaced H.264 right 692 692 // specifically PAFF + spatial prediction 693 if (codecID == CODEC_ID_H264 && ffusionIsParsedVideoDecodable(glob->begin.parser))693 if (codecID == CODEC_ID_H264 && !ffusionIsParsedVideoDecodable(glob->begin.parser)) 694 694 err = featureUnsupported; 695 695 branches/perian-1.1/bitstream_info.c
r797 r798 830 830 831 831 // don't try to decode interlaced or 4:2:2 H.264 832 return ( !h264parser->frame_mbs_only_flag) && (h264parser->chroma_format_idc <= 1);833 } 834 835 return 0;836 } 832 return (h264parser->frame_mbs_only_flag == 1) && (h264parser->chroma_format_idc <= 1); 833 } 834 835 return 1; 836 }
