FFmpeg
mvi.c
Go to the documentation of this file.
1 /*
2  * Motion Pixels MVI Demuxer
3  * Copyright (c) 2008 Gregory Montoir (cyx@users.sourceforge.net)
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include <inttypes.h>
23 
25 #include "avformat.h"
26 #include "internal.h"
27 
28 #define MVI_FRAC_BITS 10
29 
30 #define MVI_AUDIO_STREAM_INDEX 0
31 #define MVI_VIDEO_STREAM_INDEX 1
32 
33 typedef struct MviDemuxContext {
34  unsigned int (*get_int)(AVIOContext *);
35  uint32_t audio_data_size;
37  uint64_t audio_frame_size;
41 
43 {
44  MviDemuxContext *mvi = s->priv_data;
45  AVIOContext *pb = s->pb;
46  AVStream *ast, *vst;
47  unsigned int version, frames_count, msecs_per_frame, player_version;
48 
49  ast = avformat_new_stream(s, NULL);
50  if (!ast)
51  return AVERROR(ENOMEM);
52 
53  vst = avformat_new_stream(s, NULL);
54  if (!vst)
55  return AVERROR(ENOMEM);
56 
57  if (ff_alloc_extradata(vst->codecpar, 2))
58  return AVERROR(ENOMEM);
59 
60  version = avio_r8(pb);
61  vst->codecpar->extradata[0] = avio_r8(pb);
62  vst->codecpar->extradata[1] = avio_r8(pb);
63  frames_count = avio_rl32(pb);
64  msecs_per_frame = avio_rl32(pb);
65  vst->codecpar->width = avio_rl16(pb);
66  vst->codecpar->height = avio_rl16(pb);
67  avio_r8(pb);
68  ast->codecpar->sample_rate = avio_rl16(pb);
69  mvi->audio_data_size = avio_rl32(pb);
70  avio_r8(pb);
71  player_version = avio_rl32(pb);
72  avio_rl16(pb);
73  avio_r8(pb);
74 
75  if (frames_count == 0 || mvi->audio_data_size == 0)
76  return AVERROR_INVALIDDATA;
77 
78  if (version != 7 || player_version > 213) {
79  av_log(s, AV_LOG_ERROR, "unhandled version (%d,%d)\n", version, player_version);
80  return AVERROR_INVALIDDATA;
81  }
82 
83  avpriv_set_pts_info(ast, 64, 1, ast->codecpar->sample_rate);
86  ast->codecpar->channels = 1;
89  ast->codecpar->bit_rate = ast->codecpar->sample_rate * 8;
90 
91  avpriv_set_pts_info(vst, 64, msecs_per_frame, 1000000);
92  vst->avg_frame_rate = av_inv_q(vst->time_base);
95 
96  mvi->get_int = (vst->codecpar->width * (int64_t)vst->codecpar->height < (1 << 16)) ? avio_rl16 : avio_rl24;
97 
98  mvi->audio_frame_size = ((uint64_t)mvi->audio_data_size << MVI_FRAC_BITS) / frames_count;
99  if (mvi->audio_frame_size <= 1 << MVI_FRAC_BITS - 1) {
101  "Invalid audio_data_size (%"PRIu32") or frames_count (%u)\n",
102  mvi->audio_data_size, frames_count);
103  return AVERROR_INVALIDDATA;
104  }
105 
106  mvi->audio_size_counter = (ast->codecpar->sample_rate * 830 / mvi->audio_frame_size - 1) * mvi->audio_frame_size;
107  mvi->audio_size_left = mvi->audio_data_size;
108 
109  return 0;
110 }
111 
113 {
114  int ret, count;
115  MviDemuxContext *mvi = s->priv_data;
116  AVIOContext *pb = s->pb;
117 
118  if (mvi->video_frame_size == 0) {
119  mvi->video_frame_size = (mvi->get_int)(pb);
120  if (mvi->audio_size_left == 0)
121  return AVERROR(EIO);
122  if (mvi->audio_size_counter + 512 > UINT64_MAX - mvi->audio_frame_size ||
123  mvi->audio_size_counter + 512 + mvi->audio_frame_size >= ((uint64_t)INT32_MAX) << MVI_FRAC_BITS)
124  return AVERROR_INVALIDDATA;
125 
126  count = (mvi->audio_size_counter + mvi->audio_frame_size + 512) >> MVI_FRAC_BITS;
127  if (count > mvi->audio_size_left)
128  count = mvi->audio_size_left;
129  if ((int64_t)count << MVI_FRAC_BITS > INT_MAX)
130  return AVERROR_INVALIDDATA;
131  if ((ret = av_get_packet(pb, pkt, count)) < 0)
132  return ret;
134  mvi->audio_size_left -= count;
136  } else {
137  if ((ret = av_get_packet(pb, pkt, mvi->video_frame_size)) < 0)
138  return ret;
140  mvi->video_frame_size = 0;
141  }
142  return 0;
143 }
144 
146  .name = "mvi",
147  .long_name = NULL_IF_CONFIG_SMALL("Motion Pixels MVI"),
148  .priv_data_size = sizeof(MviDemuxContext),
151  .extensions = "mvi",
152 };
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: avcodec.h:3971
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4480
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3953
MviDemuxContext::audio_frame_size
uint64_t audio_frame_size
Definition: mvi.c:37
AV_CH_LAYOUT_MONO
#define AV_CH_LAYOUT_MONO
Definition: channel_layout.h:85
count
void INT64 INT64 count
Definition: avisynth_c.h:767
MviDemuxContext::audio_data_size
uint32_t audio_data_size
Definition: mvi.c:35
MVI_AUDIO_STREAM_INDEX
#define MVI_AUDIO_STREAM_INDEX
Definition: mvi.c:30
read_packet
static int read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: mvi.c:112
AVStream::avg_frame_rate
AVRational avg_frame_rate
Average framerate.
Definition: avformat.h:943
MVI_FRAC_BITS
#define MVI_FRAC_BITS
Definition: mvi.c:28
AVCodecParameters::channels
int channels
Audio only.
Definition: avcodec.h:4063
MviDemuxContext::video_frame_size
int video_frame_size
Definition: mvi.c:39
avio_rl16
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:753
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AVInputFormat
Definition: avformat.h:640
s
#define s(width, name)
Definition: cbs_vp9.c:257
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:645
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
AVCodecParameters::width
int width
Video only.
Definition: avcodec.h:4023
version
int version
Definition: avisynth_c.h:858
AVFormatContext
Format I/O context.
Definition: avformat.h:1342
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1017
AVStream::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avformat.h:899
NULL
#define NULL
Definition: coverity.c:32
MviDemuxContext
Definition: mvi.c:33
AV_CODEC_ID_MOTIONPIXELS
@ AV_CODEC_ID_MOTIONPIXELS
Definition: avcodec.h:337
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: avcodec.h:4067
avio_rl32
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:769
AVIOContext
Bytestream IO Context.
Definition: avio.h:161
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4910
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:638
read_header
static int read_header(AVFormatContext *s)
Definition: mvi.c:42
avio_rl24
unsigned int avio_rl24(AVIOContext *s)
Definition: aviobuf.c:761
AVCodecParameters::height
int height
Definition: avcodec.h:4024
av_inv_q
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:159
av_get_packet
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition: utils.c:313
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:870
avformat.h
channel_layout.h
pkt
static AVPacket pkt
Definition: demuxing_decoding.c:54
MviDemuxContext::audio_size_left
int audio_size_left
Definition: mvi.c:38
AVPacket::stream_index
int stream_index
Definition: avcodec.h:1479
MviDemuxContext::audio_size_counter
uint64_t audio_size_counter
Definition: mvi.c:36
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: avcodec.h:3999
AV_CODEC_ID_PCM_U8
@ AV_CODEC_ID_PCM_U8
Definition: avcodec.h:468
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3957
AVPacket
This structure stores compressed data.
Definition: avcodec.h:1454
AVCodecParameters::channel_layout
uint64_t channel_layout
Audio only.
Definition: avcodec.h:4059
ff_mvi_demuxer
AVInputFormat ff_mvi_demuxer
Definition: mvi.c:145
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: avcodec.h:3986
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
MVI_VIDEO_STREAM_INDEX
#define MVI_VIDEO_STREAM_INDEX
Definition: mvi.c:31
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
int
int
Definition: ffmpeg_filter.c:191
ff_alloc_extradata
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0.
Definition: utils.c:3309
MviDemuxContext::get_int
unsigned int(* get_int)(AVIOContext *)
Definition: mvi.c:34