2016-11-24 14:29:43 +00:00
|
|
|
// Copyright (C) 2016 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
// Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
use std::cmp;
|
|
|
|
|
|
|
|
use nom;
|
|
|
|
use nom::IResult;
|
|
|
|
|
|
|
|
use flavors::parser as flavors;
|
|
|
|
|
|
|
|
use error::*;
|
|
|
|
use rsdemuxer::*;
|
|
|
|
use buffer::*;
|
|
|
|
use adapter::*;
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
const AUDIO_STREAM_ID: u32 = 0;
|
|
|
|
const VIDEO_STREAM_ID: u32 = 1;
|
2016-11-24 14:29:43 +00:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
2016-12-03 22:57:42 +00:00
|
|
|
enum State {
|
|
|
|
Stopped,
|
2016-11-24 14:29:43 +00:00
|
|
|
NeedHeader,
|
2016-12-04 10:58:59 +00:00
|
|
|
Skipping {
|
|
|
|
audio: bool,
|
|
|
|
video: bool,
|
|
|
|
skip_left: u32,
|
|
|
|
},
|
2016-12-03 22:57:42 +00:00
|
|
|
Streaming,
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
2016-12-03 22:57:42 +00:00
|
|
|
struct StreamingState {
|
2016-12-04 10:58:59 +00:00
|
|
|
audio: Option<AudioFormat>,
|
|
|
|
expect_audio: bool,
|
|
|
|
video: Option<VideoFormat>,
|
|
|
|
expect_video: bool,
|
2016-11-24 14:29:43 +00:00
|
|
|
got_all_streams: bool,
|
2016-12-04 10:58:59 +00:00
|
|
|
last_position: Option<u64>,
|
|
|
|
|
2016-12-04 18:24:44 +00:00
|
|
|
metadata: Option<Metadata>,
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl StreamingState {
|
|
|
|
fn new(audio: bool, video: bool) -> StreamingState {
|
|
|
|
StreamingState {
|
|
|
|
audio: None,
|
|
|
|
expect_audio: audio,
|
|
|
|
video: None,
|
|
|
|
expect_video: video,
|
|
|
|
got_all_streams: false,
|
|
|
|
last_position: None,
|
2016-12-04 18:24:44 +00:00
|
|
|
metadata: None,
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Eq, Clone)]
|
|
|
|
struct AudioFormat {
|
|
|
|
format: flavors::SoundFormat,
|
|
|
|
rate: u16,
|
|
|
|
width: u8,
|
|
|
|
channels: u8,
|
|
|
|
bitrate: Option<u32>,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignores bitrate
|
|
|
|
impl PartialEq for AudioFormat {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.format.eq(&other.format) && self.rate.eq(&other.rate) && self.width.eq(&other.width) &&
|
|
|
|
self.channels.eq(&other.channels)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AudioFormat {
|
2016-12-04 18:24:44 +00:00
|
|
|
fn new(data_header: &flavors::AudioDataHeader, metadata: &Option<Metadata>) -> AudioFormat {
|
|
|
|
let numeric_rate = match (data_header.sound_format, data_header.sound_rate) {
|
2016-12-04 10:58:59 +00:00
|
|
|
(flavors::SoundFormat::NELLYMOSER_16KHZ_MONO, _) => 16000,
|
|
|
|
(flavors::SoundFormat::NELLYMOSER_8KHZ_MONO, _) => 8000,
|
|
|
|
(flavors::SoundFormat::MP3_8KHZ, _) => 8000,
|
2016-12-04 21:51:38 +00:00
|
|
|
(flavors::SoundFormat::SPEEX, _) => 16000,
|
|
|
|
(_, flavors::SoundRate::_5_5KHZ) => 5512,
|
2016-12-04 10:58:59 +00:00
|
|
|
(_, flavors::SoundRate::_11KHZ) => 11025,
|
|
|
|
(_, flavors::SoundRate::_22KHZ) => 22050,
|
|
|
|
(_, flavors::SoundRate::_44KHZ) => 44100,
|
|
|
|
};
|
|
|
|
|
2016-12-04 18:24:44 +00:00
|
|
|
let numeric_width = match data_header.sound_size {
|
2016-12-04 10:58:59 +00:00
|
|
|
flavors::SoundSize::Snd8bit => 8,
|
|
|
|
flavors::SoundSize::Snd16bit => 16,
|
|
|
|
};
|
|
|
|
|
2016-12-04 18:24:44 +00:00
|
|
|
let numeric_channels = match data_header.sound_type {
|
2016-12-04 10:58:59 +00:00
|
|
|
flavors::SoundType::SndMono => 1,
|
|
|
|
flavors::SoundType::SndStereo => 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
AudioFormat {
|
2016-12-04 18:24:44 +00:00
|
|
|
format: data_header.sound_format,
|
2016-12-04 10:58:59 +00:00
|
|
|
rate: numeric_rate,
|
|
|
|
width: numeric_width,
|
|
|
|
channels: numeric_channels,
|
2016-12-04 18:24:44 +00:00
|
|
|
bitrate: metadata.as_ref().and_then(|m| m.audio_bitrate),
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-04 18:24:44 +00:00
|
|
|
fn update_with_metadata(&mut self, metadata: &Metadata) -> bool {
|
|
|
|
let mut changed = false;
|
|
|
|
|
|
|
|
if self.bitrate != metadata.audio_bitrate {
|
|
|
|
self.bitrate = metadata.audio_bitrate;
|
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
changed
|
|
|
|
}
|
|
|
|
|
2016-12-04 10:58:59 +00:00
|
|
|
fn to_string(&self) -> Option<String> {
|
2016-12-04 21:51:38 +00:00
|
|
|
let mut format = match self.format {
|
|
|
|
flavors::SoundFormat::MP3 |
|
|
|
|
flavors::SoundFormat::MP3_8KHZ => {
|
|
|
|
Some(String::from("audio/mpeg, mpegversion=(int) 1, layer=(int) 3"))
|
|
|
|
}
|
|
|
|
flavors::SoundFormat::PCM_BE |
|
|
|
|
flavors::SoundFormat::PCM_LE => {
|
|
|
|
if self.rate != 0 && self.channels != 0 {
|
|
|
|
// Assume little-endian for "PCM_NE", it's probably more common and we have no
|
|
|
|
// way to know what the endianness of the system creating the stream was
|
|
|
|
Some(format!("audio/x-raw, layout=(string) interleaved, \
|
|
|
|
format=(string) {}",
|
|
|
|
if self.width == 8 { "U8" } else { "S16LE" }))
|
|
|
|
} else {
|
|
|
|
None
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-04 21:51:38 +00:00
|
|
|
flavors::SoundFormat::ADPCM => Some(String::from("audio/x-adpcm, layout=(string) swf")),
|
|
|
|
flavors::SoundFormat::NELLYMOSER_16KHZ_MONO |
|
|
|
|
flavors::SoundFormat::NELLYMOSER_8KHZ_MONO |
|
|
|
|
flavors::SoundFormat::NELLYMOSER => Some(String::from("audio/x-nellymoser")),
|
|
|
|
flavors::SoundFormat::PCM_ALAW => Some(String::from("audio/x-alaw")),
|
|
|
|
flavors::SoundFormat::PCM_ULAW => Some(String::from("audio/x-mulaw")),
|
|
|
|
flavors::SoundFormat::AAC => {
|
|
|
|
// TODO: This requires getting the codec config from the stream
|
|
|
|
None
|
|
|
|
}
|
|
|
|
flavors::SoundFormat::SPEEX => {
|
|
|
|
// TODO: This requires creating a Speex streamheader...
|
|
|
|
None
|
|
|
|
}
|
|
|
|
flavors::SoundFormat::DEVICE_SPECIFIC => {
|
|
|
|
// Nobody knows
|
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if self.rate != 0 {
|
|
|
|
format.as_mut().map(|f| f.push_str(&format!(", rate=(int) {}", self.rate)));
|
|
|
|
}
|
|
|
|
if self.channels != 0 {
|
|
|
|
format.as_mut().map(|f| f.push_str(&format!(", channels=(int) {}", self.channels)));
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
2016-12-04 21:51:38 +00:00
|
|
|
|
|
|
|
format
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Eq, Clone)]
|
|
|
|
struct VideoFormat {
|
|
|
|
format: flavors::CodecId,
|
|
|
|
width: Option<u32>,
|
|
|
|
height: Option<u32>,
|
|
|
|
pixel_aspect_ratio: Option<(u32, u32)>,
|
|
|
|
framerate: Option<(u32, u32)>,
|
|
|
|
bitrate: Option<u32>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl VideoFormat {
|
2016-12-04 18:24:44 +00:00
|
|
|
fn new(data_header: &flavors::VideoDataHeader, metadata: &Option<Metadata>) -> VideoFormat {
|
2016-12-04 10:58:59 +00:00
|
|
|
VideoFormat {
|
2016-12-04 18:24:44 +00:00
|
|
|
format: data_header.codec_id,
|
|
|
|
width: metadata.as_ref().and_then(|m| m.video_width),
|
|
|
|
height: metadata.as_ref().and_then(|m| m.video_height),
|
|
|
|
pixel_aspect_ratio: metadata.as_ref().and_then(|m| m.video_pixel_aspect_ratio),
|
|
|
|
framerate: metadata.as_ref().and_then(|m| m.video_framerate),
|
|
|
|
bitrate: metadata.as_ref().and_then(|m| m.video_bitrate),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_with_metadata(&mut self, metadata: &Metadata) -> bool {
|
|
|
|
let mut changed = false;
|
|
|
|
|
|
|
|
if self.width != metadata.video_width {
|
|
|
|
self.width = metadata.video_width;
|
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.height != metadata.video_height {
|
|
|
|
self.height = metadata.video_height;
|
|
|
|
changed = true;
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
2016-12-04 18:24:44 +00:00
|
|
|
|
|
|
|
if self.pixel_aspect_ratio != metadata.video_pixel_aspect_ratio {
|
|
|
|
self.pixel_aspect_ratio = metadata.video_pixel_aspect_ratio;
|
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.framerate != metadata.video_framerate {
|
|
|
|
self.framerate = metadata.video_framerate;
|
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.bitrate != metadata.video_bitrate {
|
|
|
|
self.bitrate = metadata.video_bitrate;
|
|
|
|
changed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
changed
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn to_string(&self) -> Option<String> {
|
2016-12-04 21:51:38 +00:00
|
|
|
let mut format = match self.format {
|
|
|
|
flavors::CodecId::H263 => Some(String::from("video/x-flash-video, flvversion=(int) 1")),
|
|
|
|
flavors::CodecId::SCREEN => Some(String::from("video/x-flash-screen")),
|
|
|
|
flavors::CodecId::VP6 => Some(String::from("video/x-vp6-flash")),
|
|
|
|
flavors::CodecId::VP6A => Some(String::from("video/x-vp6-alpha")),
|
|
|
|
flavors::CodecId::SCREEN2 => Some(String::from("video/x-flash-screen2")),
|
|
|
|
flavors::CodecId::H264 => {
|
|
|
|
// TODO: Need codec_data from the stream
|
|
|
|
None
|
|
|
|
}
|
|
|
|
flavors::CodecId::JPEG => {
|
|
|
|
// Unused according to spec
|
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
2016-12-04 10:58:59 +00:00
|
|
|
|
2016-12-04 21:51:38 +00:00
|
|
|
if let (Some(width), Some(height)) = (self.width, self.height) {
|
|
|
|
format.as_mut()
|
|
|
|
.map(|f| f.push_str(&format!(", width=(int) {}, height=(int) {}", width, height)));
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(par) = self.pixel_aspect_ratio {
|
|
|
|
if par.0 != 0 && par.1 != 0 {
|
|
|
|
format.as_mut().map(|f| {
|
|
|
|
f.push_str(&format!(", pixel-aspect-ratio=(fraction) {}/{}", par.0, par.1))
|
|
|
|
});
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-04 21:51:38 +00:00
|
|
|
|
|
|
|
if let Some(fps) = self.framerate {
|
|
|
|
if fps.1 != 0 {
|
|
|
|
format.as_mut()
|
|
|
|
.map(|f| f.push_str(&format!(", framerate=(fraction) {}/{}", fps.0, fps.1)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
format
|
2016-12-04 10:58:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignores bitrate
|
|
|
|
impl PartialEq for VideoFormat {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.format.eq(&other.format) && self.width.eq(&other.width) &&
|
|
|
|
self.height.eq(&other.height) &&
|
|
|
|
self.pixel_aspect_ratio.eq(&other.pixel_aspect_ratio) &&
|
|
|
|
self.framerate.eq(&other.framerate)
|
|
|
|
}
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-04 18:24:44 +00:00
|
|
|
#[derive(Debug, PartialEq, Eq, Clone)]
|
|
|
|
struct Metadata {
|
|
|
|
duration: Option<u64>,
|
|
|
|
|
|
|
|
creation_date: Option<String>,
|
|
|
|
creator: Option<String>,
|
|
|
|
title: Option<String>,
|
|
|
|
metadata_creator: Option<String>, /* TODO: seek_table: _,
|
|
|
|
* filepositions / times metadata arrays */
|
|
|
|
|
|
|
|
audio_bitrate: Option<u32>,
|
|
|
|
|
|
|
|
video_width: Option<u32>,
|
|
|
|
video_height: Option<u32>,
|
|
|
|
video_pixel_aspect_ratio: Option<(u32, u32)>,
|
|
|
|
video_framerate: Option<(u32, u32)>,
|
|
|
|
video_bitrate: Option<u32>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Metadata {
|
|
|
|
fn new(script_data: &flavors::ScriptData) -> Metadata {
|
|
|
|
assert_eq!(script_data.name, "onMetaData");
|
|
|
|
|
|
|
|
let mut metadata = Metadata {
|
|
|
|
duration: None,
|
|
|
|
creation_date: None,
|
|
|
|
creator: None,
|
|
|
|
title: None,
|
|
|
|
metadata_creator: None,
|
|
|
|
audio_bitrate: None,
|
|
|
|
video_width: None,
|
|
|
|
video_height: None,
|
|
|
|
video_pixel_aspect_ratio: None,
|
|
|
|
video_framerate: None,
|
|
|
|
video_bitrate: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let args = match script_data.arguments {
|
|
|
|
flavors::ScriptDataValue::Object(ref objects) => objects,
|
|
|
|
flavors::ScriptDataValue::ECMAArray(ref objects) => objects,
|
|
|
|
flavors::ScriptDataValue::StrictArray(ref objects) => objects,
|
|
|
|
_ => return metadata,
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut par_n = None;
|
|
|
|
let mut par_d = None;
|
|
|
|
|
|
|
|
for arg in args {
|
|
|
|
match (arg.name, &arg.data) {
|
|
|
|
("duration", &flavors::ScriptDataValue::Number(duration)) => {
|
|
|
|
metadata.duration = Some((duration * 1000.0 * 1000.0 * 1000.0) as u64);
|
|
|
|
}
|
|
|
|
("creationdate", &flavors::ScriptDataValue::String(date)) => {
|
|
|
|
metadata.creation_date = Some(String::from(date));
|
|
|
|
}
|
|
|
|
("creator", &flavors::ScriptDataValue::String(creator)) => {
|
|
|
|
metadata.creator = Some(String::from(creator));
|
|
|
|
}
|
|
|
|
("title", &flavors::ScriptDataValue::String(title)) => {
|
|
|
|
metadata.title = Some(String::from(title));
|
|
|
|
}
|
|
|
|
("metadatacreator", &flavors::ScriptDataValue::String(creator)) => {
|
|
|
|
metadata.metadata_creator = Some(String::from(creator));
|
|
|
|
}
|
|
|
|
("audiodatarate", &flavors::ScriptDataValue::Number(datarate)) => {
|
|
|
|
metadata.audio_bitrate = Some((datarate * 1024.0) as u32);
|
|
|
|
}
|
|
|
|
("width", &flavors::ScriptDataValue::Number(width)) => {
|
|
|
|
metadata.video_width = Some(width as u32);
|
|
|
|
}
|
|
|
|
("height", &flavors::ScriptDataValue::Number(height)) => {
|
|
|
|
metadata.video_height = Some(height as u32);
|
|
|
|
}
|
|
|
|
("framerate", &flavors::ScriptDataValue::Number(framerate)) => {
|
|
|
|
// FIXME: Convert properly to a fraction
|
|
|
|
metadata.video_framerate = Some((framerate as u32, 1));
|
|
|
|
}
|
|
|
|
("AspectRatioX", &flavors::ScriptDataValue::Number(par_x)) => {
|
|
|
|
par_n = Some(par_x as u32);
|
|
|
|
}
|
|
|
|
("AspectRatioY", &flavors::ScriptDataValue::Number(par_y)) => {
|
|
|
|
par_d = Some(par_y as u32);
|
|
|
|
}
|
|
|
|
("videodatarate", &flavors::ScriptDataValue::Number(datarate)) => {
|
|
|
|
metadata.video_bitrate = Some((datarate * 1024.0) as u32);
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let (Some(par_n), Some(par_d)) = (par_n, par_d) {
|
|
|
|
metadata.video_pixel_aspect_ratio = Some((par_n, par_d));
|
|
|
|
}
|
|
|
|
|
|
|
|
metadata
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 14:29:43 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct FlvDemux {
|
2016-12-03 22:57:42 +00:00
|
|
|
state: State,
|
|
|
|
adapter: Adapter,
|
|
|
|
// Only in >= State::Streaming
|
|
|
|
streaming_state: Option<StreamingState>,
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FlvDemux {
|
|
|
|
pub fn new() -> FlvDemux {
|
2016-12-03 22:57:42 +00:00
|
|
|
FlvDemux {
|
|
|
|
state: State::Stopped,
|
|
|
|
adapter: Adapter::new(),
|
|
|
|
streaming_state: None,
|
|
|
|
}
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn new_boxed() -> Box<Demuxer> {
|
|
|
|
Box::new(FlvDemux::new())
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
fn handle_script_tag(&mut self,
|
2016-11-24 14:29:43 +00:00
|
|
|
tag_header: &flavors::TagHeader)
|
|
|
|
-> Result<HandleBufferResult, FlowError> {
|
2016-12-04 18:24:44 +00:00
|
|
|
if self.adapter.get_available() < (15 + tag_header.data_size) as usize {
|
|
|
|
return Ok(HandleBufferResult::NeedMoreData);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.adapter.flush(15).unwrap();
|
|
|
|
|
|
|
|
let buffer = self.adapter.get_buffer(tag_header.data_size as usize).unwrap();
|
|
|
|
let map = buffer.map_read().unwrap();
|
|
|
|
let data = map.as_slice();
|
|
|
|
|
|
|
|
match flavors::script_data(data) {
|
|
|
|
IResult::Done(_, ref script_data) if script_data.name == "onMetaData" => {
|
|
|
|
let streaming_state = self.streaming_state.as_mut().unwrap();
|
|
|
|
let metadata = Metadata::new(script_data);
|
|
|
|
|
|
|
|
let audio_changed = streaming_state.audio
|
|
|
|
.as_mut()
|
|
|
|
.map(|a| a.update_with_metadata(&metadata))
|
|
|
|
.unwrap_or(false);
|
|
|
|
let video_changed = streaming_state.video
|
|
|
|
.as_mut()
|
|
|
|
.map(|v| v.update_with_metadata(&metadata))
|
|
|
|
.unwrap_or(false);
|
|
|
|
streaming_state.metadata = Some(metadata);
|
|
|
|
|
|
|
|
if audio_changed || video_changed {
|
|
|
|
let mut streams = Vec::new();
|
|
|
|
|
|
|
|
if audio_changed {
|
|
|
|
if let Some(format) = streaming_state.audio
|
|
|
|
.as_ref()
|
|
|
|
.and_then(|a| a.to_string()) {
|
|
|
|
streams.push(Stream::new(AUDIO_STREAM_ID,
|
|
|
|
format,
|
|
|
|
String::from("audio")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if video_changed {
|
|
|
|
if let Some(format) = streaming_state.video
|
|
|
|
.as_ref()
|
|
|
|
.and_then(|v| v.to_string()) {
|
|
|
|
streams.push(Stream::new(VIDEO_STREAM_ID,
|
|
|
|
format,
|
|
|
|
String::from("video")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(HandleBufferResult::StreamsChanged(streams));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
IResult::Done(_, _) |
|
|
|
|
IResult::Error(_) |
|
|
|
|
IResult::Incomplete(_) => {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
}
|
2016-11-24 14:29:43 +00:00
|
|
|
|
|
|
|
Ok(HandleBufferResult::Again)
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
fn update_audio_stream(&mut self,
|
2016-12-04 10:58:59 +00:00
|
|
|
data_header: &flavors::AudioDataHeader)
|
2016-11-24 14:29:43 +00:00
|
|
|
-> Result<HandleBufferResult, FlowError> {
|
2016-12-03 22:57:42 +00:00
|
|
|
let streaming_state = self.streaming_state.as_mut().unwrap();
|
|
|
|
|
2016-12-04 18:24:44 +00:00
|
|
|
let new_audio_format = AudioFormat::new(data_header, &streaming_state.metadata);
|
2016-12-04 10:58:59 +00:00
|
|
|
|
|
|
|
if streaming_state.audio.as_ref() != Some(&new_audio_format) {
|
|
|
|
let new_stream = streaming_state.audio == None;
|
|
|
|
|
|
|
|
let format = new_audio_format.to_string();
|
|
|
|
if let Some(format) = format {
|
|
|
|
streaming_state.audio = Some(new_audio_format);
|
|
|
|
let stream = Stream::new(AUDIO_STREAM_ID, format, String::from("audio"));
|
|
|
|
if new_stream {
|
|
|
|
return Ok(HandleBufferResult::StreamAdded(stream));
|
|
|
|
} else {
|
|
|
|
return Ok(HandleBufferResult::StreamChanged(stream));
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
if !streaming_state.got_all_streams &&
|
2016-12-04 10:58:59 +00:00
|
|
|
(streaming_state.expect_video && streaming_state.video != None ||
|
|
|
|
!streaming_state.expect_video) {
|
2016-12-03 22:57:42 +00:00
|
|
|
streaming_state.got_all_streams = true;
|
2016-11-24 14:29:43 +00:00
|
|
|
return Ok(HandleBufferResult::HaveAllStreams);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(HandleBufferResult::Again)
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
fn handle_audio_tag(&mut self,
|
2016-11-24 14:29:43 +00:00
|
|
|
tag_header: &flavors::TagHeader,
|
2016-12-04 10:58:59 +00:00
|
|
|
data_header: &flavors::AudioDataHeader)
|
2016-11-24 14:29:43 +00:00
|
|
|
-> Result<HandleBufferResult, FlowError> {
|
2016-12-03 22:57:42 +00:00
|
|
|
let res = self.update_audio_stream(data_header);
|
2016-11-24 14:29:43 +00:00
|
|
|
match res {
|
|
|
|
Ok(HandleBufferResult::Again) => (),
|
|
|
|
_ => return res,
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
if self.adapter.get_available() < (15 + tag_header.data_size) as usize {
|
2016-11-24 14:29:43 +00:00
|
|
|
return Ok(HandleBufferResult::NeedMoreData);
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
self.adapter.flush(16).unwrap();
|
2016-11-24 14:29:43 +00:00
|
|
|
if tag_header.data_size == 0 {
|
|
|
|
return Ok(HandleBufferResult::Again);
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
let mut buffer = self.adapter.get_buffer((tag_header.data_size - 1) as usize).unwrap();
|
|
|
|
buffer.set_pts(Some((tag_header.timestamp as u64) * 1000 * 1000)).unwrap();
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
Ok(HandleBufferResult::BufferForStream(AUDIO_STREAM_ID, buffer))
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
fn update_video_stream(&mut self,
|
2016-12-04 10:58:59 +00:00
|
|
|
data_header: &flavors::VideoDataHeader)
|
2016-11-24 14:29:43 +00:00
|
|
|
-> Result<HandleBufferResult, FlowError> {
|
2016-12-03 22:57:42 +00:00
|
|
|
let streaming_state = self.streaming_state.as_mut().unwrap();
|
|
|
|
|
2016-12-04 18:24:44 +00:00
|
|
|
let new_video_format = VideoFormat::new(data_header, &streaming_state.metadata);
|
2016-12-04 10:58:59 +00:00
|
|
|
|
|
|
|
if streaming_state.video.as_ref() != Some(&new_video_format) {
|
|
|
|
let new_stream = streaming_state.video == None;
|
|
|
|
|
|
|
|
let format = new_video_format.to_string();
|
|
|
|
if let Some(format) = format {
|
|
|
|
streaming_state.video = Some(new_video_format);
|
|
|
|
let stream = Stream::new(VIDEO_STREAM_ID, format, String::from("video"));
|
|
|
|
if new_stream {
|
|
|
|
return Ok(HandleBufferResult::StreamAdded(stream));
|
|
|
|
} else {
|
|
|
|
return Ok(HandleBufferResult::StreamChanged(stream));
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
if !streaming_state.got_all_streams &&
|
2016-12-04 10:58:59 +00:00
|
|
|
(streaming_state.expect_audio && streaming_state.audio != None ||
|
|
|
|
!streaming_state.expect_audio) {
|
2016-12-03 22:57:42 +00:00
|
|
|
streaming_state.got_all_streams = true;
|
2016-11-24 14:29:43 +00:00
|
|
|
return Ok(HandleBufferResult::HaveAllStreams);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(HandleBufferResult::Again)
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
fn handle_video_tag(&mut self,
|
2016-11-24 14:29:43 +00:00
|
|
|
tag_header: &flavors::TagHeader,
|
2016-12-04 10:58:59 +00:00
|
|
|
data_header: &flavors::VideoDataHeader)
|
2016-11-24 14:29:43 +00:00
|
|
|
-> Result<HandleBufferResult, FlowError> {
|
2016-12-03 22:57:42 +00:00
|
|
|
let res = self.update_video_stream(data_header);
|
2016-11-24 14:29:43 +00:00
|
|
|
match res {
|
|
|
|
Ok(HandleBufferResult::Again) => (),
|
|
|
|
_ => return res,
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
if self.adapter.get_available() < (15 + tag_header.data_size) as usize {
|
2016-11-24 14:29:43 +00:00
|
|
|
return Ok(HandleBufferResult::NeedMoreData);
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
let streaming_state = self.streaming_state.as_ref().unwrap();
|
|
|
|
let video = streaming_state.video.as_ref().unwrap();
|
2016-12-04 10:58:59 +00:00
|
|
|
let is_keyframe = data_header.frame_type == flavors::FrameType::Key;
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
self.adapter.flush(16).unwrap();
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-04 10:58:59 +00:00
|
|
|
let offset = if video.format == flavors::CodecId::VP6 ||
|
|
|
|
video.format == flavors::CodecId::VP6A {
|
2016-11-24 14:29:43 +00:00
|
|
|
1
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
if tag_header.data_size == 0 {
|
|
|
|
return Ok(HandleBufferResult::Again);
|
|
|
|
}
|
|
|
|
|
|
|
|
if tag_header.data_size < offset {
|
2016-12-03 22:57:42 +00:00
|
|
|
self.adapter.flush((tag_header.data_size - 1) as usize).unwrap();
|
2016-11-24 14:29:43 +00:00
|
|
|
return Ok(HandleBufferResult::Again);
|
|
|
|
}
|
|
|
|
|
|
|
|
if offset > 0 {
|
2016-12-03 22:57:42 +00:00
|
|
|
self.adapter.flush(offset as usize).unwrap();
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
let mut buffer = self.adapter
|
|
|
|
.get_buffer((tag_header.data_size - 1 - offset) as usize)
|
2016-11-24 14:29:43 +00:00
|
|
|
.unwrap();
|
|
|
|
if !is_keyframe {
|
|
|
|
buffer.set_flags(BUFFER_FLAG_DELTA_UNIT).unwrap();
|
|
|
|
}
|
|
|
|
buffer.set_dts(Some((tag_header.timestamp as u64) * 1000 * 1000))
|
|
|
|
.unwrap();
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
Ok(HandleBufferResult::BufferForStream(VIDEO_STREAM_ID, buffer))
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
fn update_state(&mut self) -> Result<HandleBufferResult, FlowError> {
|
|
|
|
match self.state {
|
|
|
|
State::Stopped => unreachable!(),
|
|
|
|
State::NeedHeader => {
|
|
|
|
while self.adapter.get_available() >= 9 {
|
|
|
|
let mut data = [0u8; 9];
|
|
|
|
self.adapter.peek_into(&mut data).unwrap();
|
|
|
|
|
|
|
|
match flavors::header(&data) {
|
|
|
|
IResult::Error(_) |
|
|
|
|
IResult::Incomplete(_) => {
|
|
|
|
// fall through
|
|
|
|
}
|
2016-12-04 18:24:44 +00:00
|
|
|
IResult::Done(_, ref header) => {
|
2016-12-04 10:58:59 +00:00
|
|
|
let skip = if header.offset < 9 {
|
|
|
|
0
|
|
|
|
} else {
|
|
|
|
header.offset - 9
|
|
|
|
};
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
self.adapter.flush(9).unwrap();
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-04 10:58:59 +00:00
|
|
|
self.state = State::Skipping {
|
|
|
|
audio: header.audio,
|
|
|
|
video: header.video,
|
|
|
|
skip_left: skip,
|
|
|
|
};
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
return Ok(HandleBufferResult::Again);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.adapter.flush(1).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(HandleBufferResult::NeedMoreData)
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
2016-12-04 10:58:59 +00:00
|
|
|
State::Skipping { audio, video, skip_left: 0 } => {
|
2016-12-03 22:57:42 +00:00
|
|
|
self.state = State::Streaming;
|
2016-12-04 10:58:59 +00:00
|
|
|
self.streaming_state = Some(StreamingState::new(audio, video));
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
Ok(HandleBufferResult::Again)
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
2016-12-04 10:58:59 +00:00
|
|
|
State::Skipping { ref mut skip_left, .. } => {
|
2016-12-03 22:57:42 +00:00
|
|
|
let skip = cmp::min(self.adapter.get_available(), *skip_left as usize);
|
|
|
|
self.adapter.flush(skip).unwrap();
|
|
|
|
*skip_left -= skip as u32;
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
Ok(HandleBufferResult::Again)
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
2016-12-03 22:57:42 +00:00
|
|
|
State::Streaming => {
|
|
|
|
if self.adapter.get_available() < 16 {
|
|
|
|
return Ok(HandleBufferResult::NeedMoreData);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut data = [0u8; 16];
|
|
|
|
self.adapter.peek_into(&mut data).unwrap();
|
|
|
|
|
|
|
|
match nom::be_u32(&data[0..4]) {
|
2016-11-24 14:29:43 +00:00
|
|
|
IResult::Error(_) |
|
|
|
|
IResult::Incomplete(_) => {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
2016-12-03 22:57:42 +00:00
|
|
|
IResult::Done(_, _previous_size) => {
|
|
|
|
// Nothing to do here, we just consume it for now
|
|
|
|
}
|
|
|
|
}
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
let tag_header = match flavors::tag_header(&data[4..]) {
|
2016-11-24 14:29:43 +00:00
|
|
|
IResult::Error(_) |
|
|
|
|
IResult::Incomplete(_) => {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
2016-12-03 22:57:42 +00:00
|
|
|
IResult::Done(_, tag_header) => tag_header,
|
2016-11-24 14:29:43 +00:00
|
|
|
};
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
let res = match tag_header.tag_type {
|
|
|
|
flavors::TagType::Script => self.handle_script_tag(&tag_header),
|
|
|
|
flavors::TagType::Audio => {
|
|
|
|
let data_header = match flavors::audio_data_header(&data[15..]) {
|
|
|
|
IResult::Error(_) |
|
|
|
|
IResult::Incomplete(_) => {
|
|
|
|
unimplemented!();
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
2016-12-03 22:57:42 +00:00
|
|
|
IResult::Done(_, data_header) => data_header,
|
|
|
|
};
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-04 10:58:59 +00:00
|
|
|
self.handle_audio_tag(&tag_header, &data_header)
|
2016-12-03 22:57:42 +00:00
|
|
|
}
|
|
|
|
flavors::TagType::Video => {
|
|
|
|
let data_header = match flavors::video_data_header(&data[15..]) {
|
|
|
|
IResult::Error(_) |
|
|
|
|
IResult::Incomplete(_) => {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
IResult::Done(_, data_header) => data_header,
|
|
|
|
};
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-04 10:58:59 +00:00
|
|
|
self.handle_video_tag(&tag_header, &data_header)
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
2016-12-03 22:57:42 +00:00
|
|
|
};
|
2016-11-24 14:29:43 +00:00
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
if let Ok(HandleBufferResult::BufferForStream(_, ref buffer)) = res {
|
|
|
|
let streaming_state = self.streaming_state.as_mut().unwrap();
|
|
|
|
|
|
|
|
if let Some(pts) = buffer.get_pts() {
|
|
|
|
streaming_state.last_position = streaming_state.last_position
|
|
|
|
.map(|last| cmp::max(last, pts))
|
|
|
|
.or_else(|| Some(pts));
|
|
|
|
} else if let Some(dts) = buffer.get_dts() {
|
|
|
|
streaming_state.last_position = streaming_state.last_position
|
|
|
|
.map(|last| cmp::max(last, dts))
|
|
|
|
.or_else(|| Some(dts));
|
|
|
|
}
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
res
|
|
|
|
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Demuxer for FlvDemux {
|
|
|
|
fn start(&mut self,
|
|
|
|
_upstream_size: Option<u64>,
|
|
|
|
_random_access: bool)
|
|
|
|
-> Result<(), ErrorMessage> {
|
2016-12-03 22:57:42 +00:00
|
|
|
self.state = State::NeedHeader;
|
2016-11-24 14:29:43 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn stop(&mut self) -> Result<(), ErrorMessage> {
|
2016-12-03 22:57:42 +00:00
|
|
|
self.state = State::Stopped;
|
|
|
|
self.adapter.clear();
|
|
|
|
self.streaming_state = None;
|
2016-11-24 14:29:43 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn seek(&mut self, start: u64, stop: Option<u64>) -> Result<SeekResult, ErrorMessage> {
|
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn handle_buffer(&mut self, buffer: Option<Buffer>) -> Result<HandleBufferResult, FlowError> {
|
|
|
|
if let Some(buffer) = buffer {
|
2016-12-03 22:57:42 +00:00
|
|
|
self.adapter.push(buffer);
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-03 22:57:42 +00:00
|
|
|
self.update_state()
|
2016-11-24 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn end_of_stream(&mut self) -> Result<(), ErrorMessage> {
|
|
|
|
// nothing to do here, all data we have left is incomplete
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_seekable(&self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_position(&self) -> Option<u64> {
|
2016-12-03 22:57:42 +00:00
|
|
|
if let Some(StreamingState { last_position, .. }) = self.streaming_state {
|
2016-11-24 14:29:43 +00:00
|
|
|
return last_position;
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_duration(&self) -> Option<u64> {
|
2016-12-04 18:24:44 +00:00
|
|
|
if let Some(StreamingState { metadata: Some(Metadata { duration, .. }), .. }) =
|
|
|
|
self.streaming_state {
|
|
|
|
return duration;
|
|
|
|
}
|
|
|
|
|
2016-11-24 14:29:43 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|