X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-realmedia%2Fsrc%2Fcodecs%2Frv3040.rs;h=dde0b04774ae413c54ae6b0949228e2b5a60e405;hb=1fdbd53e295c3876df7602cc5c5397730711ed24;hp=d517cac0c166bc4633a881b876cdc8d5f21ae50c;hpb=1a967e6bad5f17943b4de0607078eb940ad5adfe;p=nihav.git diff --git a/nihav-realmedia/src/codecs/rv3040.rs b/nihav-realmedia/src/codecs/rv3040.rs index d517cac..dde0b04 100644 --- a/nihav-realmedia/src/codecs/rv3040.rs +++ b/nihav-realmedia/src/codecs/rv3040.rs @@ -1,51 +1,14 @@ use nihav_core::formats::YUV420_FORMAT; -use nihav_core::frame::{NABufferType, NAVideoInfo, NAVideoBuffer, FrameType, alloc_video_buffer}; -use nihav_core::codecs::{MV, ZERO_MV, DecoderError, DecoderResult, IPBShuffler}; +use nihav_core::frame::{NABufferType, NAVideoInfo, NAVideoBuffer, NAVideoBufferRef, FrameType, alloc_video_buffer}; +use nihav_core::codecs::{NADecoderSupport, MV, ZERO_MV, DecoderError, DecoderResult, IPBShuffler}; use nihav_core::io::bitreader::{BitReader,BitReaderMode}; use nihav_core::io::intcode::*; +use nihav_core::data::GenericCache; use std::mem; use super::rv34codes::*; use super::rv34dsp::*; -pub struct GenericCache { - pub height: usize, - pub stride: usize, - pub xpos: usize, - pub data: Vec, - pub default: T, -} - -impl GenericCache { - pub fn new(height: usize, stride: usize, default: T) -> Self { - let mut ret = Self { - stride: stride, - height: height, - xpos: 0, - data: Vec::with_capacity((height + 1) * stride), - default: default, - }; - ret.reset(); - ret - } - fn full_size(&self) -> usize { self.stride * (self.height + 1) } - pub fn reset(&mut self) { - self.data.truncate(0); - let size = self.full_size(); - self.data.resize(size, self.default); - self.xpos = self.stride + 1; - } - pub fn update_row(&mut self) { - for i in 0..self.stride { - self.data[i] = self.data[self.height * self.stride + i]; - } - self.data.truncate(self.stride); - let size = self.full_size(); - self.data.resize(size, self.default); - self.xpos = self.stride + 1; - } -} - trait RV34MVScale { fn scale(&self, trd: u16, trb: u16) -> (MV, MV); } @@ -106,17 +69,17 @@ pub enum MBType { } impl MBType { - pub fn is_intra(&self) -> bool { - (*self == MBType::MBIntra) || (*self == MBType::MBIntra16) + pub fn is_intra(self) -> bool { + (self == MBType::MBIntra) || (self == MBType::MBIntra16) } - pub fn is_16(&self) -> bool { - (*self == MBType::MBIntra16) || (*self == MBType::MBP16x16Mix) + pub fn is_16(self) -> bool { + (self == MBType::MBIntra16) || (self == MBType::MBP16x16Mix) } - pub fn is_intra_or_16(&self) -> bool { + pub fn is_intra_or_16(self) -> bool { self.is_intra() || self.is_16() } - pub fn get_num_mvs(&self) -> usize { - match *self { + pub fn get_num_mvs(self) -> usize { + match self { MBType::MBIntra | MBType::MBIntra16 | MBType::MBSkip | MBType::MBDirect => 0, MBType::MBP16x16 | MBType::MBP16x16Mix | @@ -126,42 +89,42 @@ impl MBType { MBType::Invalid => unreachable!(), } } - pub fn is_fwd(&self) -> bool { - match *self { + pub fn is_fwd(self) -> bool { + match self { MBType::MBP16x16 | MBType::MBP16x16Mix | MBType::MBP16x8 | MBType::MBP8x16 | MBType::MBP8x8 | MBType::MBForward => true, _ => false, } } - pub fn is_bwd(&self) -> bool { - match *self { + pub fn is_bwd(self) -> bool { + match self { MBType::MBBidir | MBType::MBBackward => true, _ => false, } } - pub fn has_mv_dir(&self, fwd: bool) -> bool { - match *self { + pub fn has_mv_dir(self, fwd: bool) -> bool { + match self { MBType::MBBidir => true, MBType::MBForward if fwd => true, MBType::MBBackward if !fwd => true, _ => false, } } - pub fn is_nomv(&self) -> bool { - match *self { + pub fn is_nomv(self) -> bool { + match self { MBType::MBIntra | MBType::MBIntra16 | MBType::MBSkip | MBType::MBDirect => true, _ => false, } } - /*pub fn is_16x16(&self) -> bool { - match *self { + /*pub fn is_16x16(self) -> bool { + match self { MBType::MBP16x8 | MBType::MBP8x16 | MBType::MBP8x8 => false, _ => true, } }*/ - fn get_weight(&self) -> usize { - match *self { + fn get_weight(self) -> usize { + match self { MBType::MBIntra => 0, MBType::MBIntra16 => 1, MBType::MBSkip => unreachable!(), @@ -535,7 +498,7 @@ pub trait RV34BitstreamDecoder { fn decode_intra_pred(&mut self, br: &mut BitReader, types: &mut [i8], pos: usize, tstride: usize, has_top: bool) -> DecoderResult<()>; fn quant_dc(&self, is_intra: bool, q: u8) -> u8; fn decode_inter_mb_hdr(&mut self, br: &mut BitReader, ftype: FrameType, mbtype: MBType) -> DecoderResult; - fn predict_b_mv(&self, sstate: &SState, mvi: &MVInfo, mbtype: MBType, mvs: &[MV], mbinfo: &Vec) -> (MV, MV); + fn predict_b_mv(&self, sstate: &SState, mvi: &MVInfo, mbtype: MBType, mvs: &[MV], mbinfo: &[RV34MBInfo]) -> (MV, MV); } pub trait RV34DSP { @@ -568,7 +531,7 @@ fn parse_slice_offsets(src: &[u8], offsets: &mut Vec) -> DecoderResult<() Ok(()) } -fn decode_slice_header(br: &mut BitReader, bd: &mut RV34BitstreamDecoder, slice_no: usize, slice_offs: &Vec, old_width: usize, old_height: usize) -> DecoderResult { +fn decode_slice_header(br: &mut BitReader, bd: &mut RV34BitstreamDecoder, slice_no: usize, slice_offs: &[usize], old_width: usize, old_height: usize) -> DecoderResult { validate!(slice_no < slice_offs.len()); br.seek((slice_offs[slice_no] * 8) as u32)?; let mut shdr = bd.decode_slice_header(br, old_width, old_height)?; @@ -713,16 +676,16 @@ impl MBHist { fn decode_mv(br: &mut BitReader) -> DecoderResult { let x = br.read_code_signed(IntCodeType::Gamma)? as i16; let y = br.read_code_signed(IntCodeType::Gamma)? as i16; - Ok(MV{ x: x, y: y }) + Ok(MV{ x, y }) } -fn do_mc_16x16(dsp: &Box, buf: &mut NAVideoBuffer, prevbuf: &NAVideoBuffer, mb_x: usize, mb_y: usize, mv: MV, avg: bool) { +fn do_mc_16x16(dsp: &Box, buf: &mut NAVideoBuffer, prevbuf: &NAVideoBuffer, mb_x: usize, mb_y: usize, mv: MV, avg: bool) { dsp.do_luma_mc (buf, prevbuf, mb_x * 16, mb_y * 16, mv, true, avg); dsp.do_chroma_mc(buf, prevbuf, mb_x * 8, mb_y * 8, 1, mv, true, avg); dsp.do_chroma_mc(buf, prevbuf, mb_x * 8, mb_y * 8, 2, mv, true, avg); } -fn do_mc_8x8(dsp: &Box, buf: &mut NAVideoBuffer, prevbuf: &NAVideoBuffer, mb_x: usize, xoff: usize, mb_y: usize, yoff: usize, mv: MV, avg: bool) { +fn do_mc_8x8(dsp: &Box, buf: &mut NAVideoBuffer, prevbuf: &NAVideoBuffer, mb_x: usize, xoff: usize, mb_y: usize, yoff: usize, mv: MV, avg: bool) { dsp.do_luma_mc (buf, prevbuf, mb_x * 16 + xoff * 8, mb_y * 16 + yoff * 8, mv, false, avg); dsp.do_chroma_mc(buf, prevbuf, mb_x * 8 + xoff * 4, mb_y * 8 + yoff * 4, 1, mv, false, avg); dsp.do_chroma_mc(buf, prevbuf, mb_x * 8 + xoff * 4, mb_y * 8 + yoff * 4, 2, mv, false, avg); @@ -754,7 +717,7 @@ fn do_avg(cdsp: &RV34CommonDSP, buf: &mut NAVideoBuffer, avg_buf: &NAVideoBu pub struct RV34Decoder { is_rv30: bool, coderead: RV34Codes, - dsp: Box, + dsp: Box, cdsp: RV34CommonDSP, width: usize, height: usize, @@ -767,20 +730,20 @@ pub struct RV34Decoder { ratio2: u32, is_b: bool, mbinfo: Vec, - avg_buf: NAVideoBuffer, + avg_buf: NAVideoBufferRef, base_ts: u64, } impl RV34Decoder { - pub fn new(is_rv30: bool, dsp: Box) -> Self { + pub fn new(is_rv30: bool, dsp: Box) -> Self { let tmp_vinfo = NAVideoInfo::new(16, 16, false, YUV420_FORMAT); let vt = alloc_video_buffer(tmp_vinfo, 4).unwrap(); let vb = vt.get_vbuf(); let avg_buf = vb.unwrap(); RV34Decoder { - is_rv30: is_rv30, + is_rv30, coderead: RV34Codes::new(), - dsp: dsp, + dsp, cdsp: RV34CommonDSP::new(), ipbs: IPBShuffler::new(), mvi: MVInfo::new(), @@ -790,7 +753,7 @@ impl RV34Decoder { last_ts: 0, next_ts: 0, ratio1: 0, ratio2: 0, is_b: false, - avg_buf: avg_buf, + avg_buf, base_ts: 0, } } @@ -798,7 +761,7 @@ impl RV34Decoder { if is_i16 { let imode = br.read(2)? as i8; im.fill_block(imode); - return Ok(MBInfo { mbtype: MBType::MBIntra16, skip_run: 0, dquant: false }); + Ok(MBInfo { mbtype: MBType::MBIntra16, skip_run: 0, dquant: false }) } else { let dq = if !has_dq { if !self.is_rv30 { !br.read_bool()? } else { false } @@ -807,7 +770,7 @@ impl RV34Decoder { decode_dquant(br, q)?; } bd.decode_intra_pred(br, im.cache.data.as_mut_slice(), im.cache.xpos, im.cache.stride, has_top)?; - return Ok(MBInfo { mbtype: MBType::MBIntra, skip_run: 0, dquant: dq }); + Ok(MBInfo { mbtype: MBType::MBIntra, skip_run: 0, dquant: dq }) } } fn decode_mb_header_inter(&mut self, bd: &mut RV34BitstreamDecoder, br: &mut BitReader, ftype: FrameType, mbtype: MBType, im: &mut IntraModeState, q: u8, has_top: bool) -> DecoderResult { @@ -819,7 +782,7 @@ impl RV34Decoder { if hdr.mbtype.is_intra() { return self.decode_mb_header_intra(bd, br, hdr.mbtype.is_16(), im, q, has_top, true); } - return Ok(hdr); + Ok(hdr) } fn decode_mb_intra(&mut self, sstate: &SState, imode: &IntraModeState, buf: &mut NAVideoBuffer, br: &mut BitReader, is_16: bool) -> DecoderResult<()> { @@ -1112,13 +1075,13 @@ impl RV34Decoder { } } - pub fn parse_frame(&mut self, src: &[u8], bd: &mut RV34BitstreamDecoder) -> DecoderResult<(NABufferType, FrameType, u64)> { + pub fn parse_frame(&mut self, supp: &mut NADecoderSupport, src: &[u8], bd: &mut RV34BitstreamDecoder) -> DecoderResult<(NABufferType, FrameType, u64)> { let mut slice_offs: Vec = Vec::new(); parse_slice_offsets(src, &mut slice_offs)?; let ini_off = slice_offs.len() * 8 + 1; let mut br = BitReader::new(&src[ini_off..], src.len() - ini_off, BitReaderMode::BE); - let hdr0 = decode_slice_header(&mut br, bd, 0, &slice_offs, self.width, self.height)?; + let hdr0 = decode_slice_header(&mut br, bd, 0, slice_offs.as_slice(), self.width, self.height)?; validate!((hdr0.width != 0) && (hdr0.height != 0)); self.width = hdr0.width; self.height = hdr0.height; @@ -1157,10 +1120,21 @@ impl RV34Decoder { //todo validate against ref frame let vinfo = NAVideoInfo::new(hdr0.width, hdr0.height, false, YUV420_FORMAT); - let bufret = alloc_video_buffer(vinfo, 4); - if let Err(_) = bufret { return Err(DecoderError::InvalidData); } - let bufinfo = bufret.unwrap(); - let mut buf = bufinfo.get_vbuf().unwrap(); + let ret = supp.pool_u8.get_free(); + if ret.is_none() { + return Err(DecoderError::AllocError); + } + let mut buf = ret.unwrap(); + if buf.get_info() != vinfo { + self.ipbs.clear(); + supp.pool_u8.reset(); + supp.pool_u8.prealloc_video(vinfo, 4)?; + let ret = supp.pool_u8.get_free(); + if ret.is_none() { + return Err(DecoderError::AllocError); + } + buf = ret.unwrap(); + } sstate.q = q; sstate.has_top = false; @@ -1221,7 +1195,7 @@ impl RV34Decoder { if !self.is_b { self.mvi.set_mb(mb_x, mb_y, mbh.mbtype, &self.ref_mvi, &mvs, &sstate); } else { - let (mv_f, mv_b) = bd.predict_b_mv(&sstate, &self.mvi, mbh.mbtype, &mvs, &mbinfo); + let (mv_f, mv_b) = bd.predict_b_mv(&sstate, &self.mvi, mbh.mbtype, &mvs, mbinfo.as_slice()); self.mvi.fill(mb_x, mb_y, true, mv_f); self.mvi.fill(mb_x, mb_y, false, mv_b); } @@ -1249,7 +1223,7 @@ impl RV34Decoder { self.decode_mb_inter(&sstate, &mbh, &mut buf, &mut br, is_16)?; } - let mi = RV34MBInfo { cbp: cbp, q: q, mbtype: mbh.mbtype, deblock: 0, cbp_c: 0 }; + let mi = RV34MBInfo { cbp, q, mbtype: mbh.mbtype, deblock: 0, cbp_c: 0 }; mbinfo.push(mi); if is_intra { mbinfo[mb_pos].deblock = 0xFFFF; @@ -1269,11 +1243,11 @@ impl RV34Decoder { self.dsp.loop_filter(&mut buf, hdr0.ftype, &mbinfo, mb_w, mb_h - 1); } if !self.is_b { - self.ipbs.add_frame(buf); + self.ipbs.add_frame(buf.clone()); mem::swap(&mut self.mvi, &mut self.ref_mvi); mem::swap(&mut self.mbinfo, &mut mbinfo); } - Ok((bufinfo, hdr0.ftype, ts)) + Ok((NABufferType::Video(buf), hdr0.ftype, ts)) } }