FFmpeg
Loading...
Searching...
No Matches
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 "demux.h"
27#include "internal.h"
28
29#define MVI_FRAC_BITS 10
30
31#define MVI_AUDIO_STREAM_INDEX 0
32#define MVI_VIDEO_STREAM_INDEX 1
33
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 int ret;
49 int audio_data_size;
50
52 if (!ast)
53 return AVERROR(ENOMEM);
54
56 if (!vst)
57 return AVERROR(ENOMEM);
58
59 if ((ret = ff_alloc_extradata(vst->codecpar, 2)) < 0)
60 return ret;
61
62 version = avio_r8(pb);
63 vst->codecpar->extradata[0] = avio_r8(pb);
64 vst->codecpar->extradata[1] = avio_r8(pb);
65 frames_count = avio_rl32(pb);
66 msecs_per_frame = avio_rl32(pb);
67 vst->codecpar->width = avio_rl16(pb);
68 vst->codecpar->height = avio_rl16(pb);
69 avio_r8(pb);
70 ast->codecpar->sample_rate = avio_rl16(pb);
71 audio_data_size = avio_rl32(pb);
72 avio_r8(pb);
73 player_version = avio_rl32(pb);
74 avio_rl16(pb);
75 avio_r8(pb);
76
77 if (frames_count == 0 || audio_data_size <= 0)
79
80 if (version != 7 || player_version > 213) {
81 av_log(s, AV_LOG_ERROR, "unhandled version (%d,%d)\n", version, player_version);
83 }
84
85 avpriv_set_pts_info(ast, 64, 1, ast->codecpar->sample_rate);
90 ast->codecpar->bit_rate = ast->codecpar->sample_rate * 8;
91
92 avpriv_set_pts_info(vst, 64, msecs_per_frame, 1000000);
96
97 mvi->get_int = (vst->codecpar->width * (int64_t)vst->codecpar->height < (1 << 16)) ? avio_rl16 : avio_rl24;
98
99 mvi->audio_frame_size = ((uint64_t)audio_data_size << MVI_FRAC_BITS) / frames_count;
100 if (mvi->audio_frame_size <= 1 << MVI_FRAC_BITS - 1) {
102 "Invalid audio_data_size (%d) or frames_count (%u)\n",
103 audio_data_size, frames_count);
104 return AVERROR_INVALIDDATA;
105 }
106
107 mvi->audio_size_counter = (ast->codecpar->sample_rate * 830 / mvi->audio_frame_size - 1) * mvi->audio_frame_size;
108 mvi->audio_size_left = audio_data_size;
109
110 return 0;
111}
112
114{
115 int ret, count;
116 MviDemuxContext *mvi = s->priv_data;
117 AVIOContext *pb = s->pb;
118
119 if (mvi->video_frame_size == 0) {
120 mvi->video_frame_size = (mvi->get_int)(pb);
121 if (mvi->audio_size_left == 0)
122 return AVERROR_INVALIDDATA;
123 if (mvi->audio_size_counter + 512 > UINT64_MAX - mvi->audio_frame_size ||
124 mvi->audio_size_counter + 512 + mvi->audio_frame_size >= ((uint64_t)INT32_MAX) << MVI_FRAC_BITS)
125 return AVERROR_INVALIDDATA;
126
127 count = (mvi->audio_size_counter + mvi->audio_frame_size + 512) >> MVI_FRAC_BITS;
128 if (count > mvi->audio_size_left)
129 count = mvi->audio_size_left;
130 if ((int64_t)count << MVI_FRAC_BITS > INT_MAX)
131 return AVERROR_INVALIDDATA;
132 if ((ret = av_get_packet(pb, pkt, count)) < 0)
133 return ret;
134 pkt->stream_index = MVI_AUDIO_STREAM_INDEX;
135 mvi->audio_size_left -= count;
136 mvi->audio_size_counter += mvi->audio_frame_size - (count << MVI_FRAC_BITS);
137 } else {
138 if ((ret = av_get_packet(pb, pkt, mvi->video_frame_size)) < 0)
139 return ret;
140 pkt->stream_index = MVI_VIDEO_STREAM_INDEX;
141 mvi->video_frame_size = 0;
142 }
143 return 0;
144}
145
147 .p.name = "mvi",
148 .p.long_name = NULL_IF_CONFIG_SMALL("Motion Pixels MVI"),
149 .p.extensions = "mvi",
150 .priv_data_size = sizeof(MviDemuxContext),
153};
const FFInputFormat ff_mvi_demuxer
Definition mvi.c:146
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
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:98
unsigned int avio_rl16(AVIOContext *s)
Definition aviobuf.c:717
unsigned int avio_rl32(AVIOContext *s)
Definition aviobuf.c:733
unsigned int avio_rl24(AVIOContext *s)
Definition aviobuf.c:725
int avio_r8(AVIOContext *s)
Definition aviobuf.c:606
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static AVPacket * pkt
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
@ AV_CODEC_ID_PCM_U8
Definition codec_id.h:335
@ AV_CODEC_ID_MOTIONPIXELS
Definition codec_id.h:169
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AV_CHANNEL_LAYOUT_MONO
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition rational.h:159
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
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:237
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
version
Definition libkvazaar.c:313
#define MVI_VIDEO_STREAM_INDEX
Definition mvi.c:32
static int read_packet(AVFormatContext *s, AVPacket *pkt)
Definition mvi.c:113
#define MVI_AUDIO_STREAM_INDEX
Definition mvi.c:31
static int read_header(AVFormatContext *s)
Definition mvi.c:42
#define MVI_FRAC_BITS
Definition mvi.c:29
An AVChannelLayout holds information about the channel layout of audio data.
int height
The height of the video frame in pixels.
Definition codec_par.h:150
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition codec_par.h:113
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
int width
The width of the video frame in pixels.
Definition codec_par.h:143
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition codec_par.h:99
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
Bytestream IO Context.
Definition avio.h:160
This structure stores compressed data.
Definition packet.h:580
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
AVRational avg_frame_rate
Average framerate.
Definition avformat.h:855
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition avformat.h:805
uint64_t audio_frame_size
Definition mvi.c:37
unsigned int(* get_int)(AVIOContext *)
Definition mvi.c:35
int video_frame_size
Definition mvi.c:39
int audio_size_left
Definition mvi.c:38
uint64_t audio_size_counter
Definition mvi.c:36
#define av_log(a,...)