FFmpeg
xmv.c
Go to the documentation of this file.
1 /*
2  * Microsoft XMV demuxer
3  * Copyright (c) 2011 Sven Hesse <drmccoy@drmccoy.de>
4  * Copyright (c) 2011 Matthew Hoops <clone2727@gmail.com>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 /**
24  * @file
25  * Microsoft XMV demuxer
26  */
27 
28 #include <inttypes.h>
29 
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/mem.h"
32 
33 #include "avformat.h"
34 #include "avio_internal.h"
35 #include "demux.h"
36 #include "internal.h"
37 #include "riff.h"
38 #include "libavutil/avassert.h"
39 
40 /** The min size of an XMV header. */
41 #define XMV_MIN_HEADER_SIZE 36
42 
43 /** Audio flag: ADPCM'd 5.1 stream, front left / right channels */
44 #define XMV_AUDIO_ADPCM51_FRONTLEFTRIGHT 1
45 /** Audio flag: ADPCM'd 5.1 stream, front center / low frequency channels */
46 #define XMV_AUDIO_ADPCM51_FRONTCENTERLOW 2
47 /** Audio flag: ADPCM'd 5.1 stream, rear left / right channels */
48 #define XMV_AUDIO_ADPCM51_REARLEFTRIGHT 4
49 
50 /** Audio flag: Any of the ADPCM'd 5.1 stream flags. */
51 #define XMV_AUDIO_ADPCM51 (XMV_AUDIO_ADPCM51_FRONTLEFTRIGHT | \
52  XMV_AUDIO_ADPCM51_FRONTCENTERLOW | \
53  XMV_AUDIO_ADPCM51_REARLEFTRIGHT)
54 
55 #define XMV_BLOCK_ALIGN_SIZE 36
56 
57 /** A video packet with an XMV file. */
58 typedef struct XMVVideoPacket {
59  int created;
60  int stream_index; ///< The decoder stream index for this video packet.
61 
62  uint32_t data_size; ///< The size of the remaining video data.
63  uint64_t data_offset; ///< The offset of the video data within the file.
64 
65  uint32_t current_frame; ///< The current frame within this video packet.
66  uint32_t frame_count; ///< The amount of frames within this video packet.
67 
68  int has_extradata; ///< Does the video packet contain extra data?
69  uint8_t extradata[4]; ///< The extra data
70 
71  int64_t last_pts; ///< PTS of the last video frame.
72  int64_t pts; ///< PTS of the most current video frame.
74 
75 /** An audio packet with an XMV file. */
76 typedef struct XMVAudioPacket {
77  int created;
78  int stream_index; ///< The decoder stream index for this audio packet.
79 
80  /* Stream format properties. */
81  uint16_t compression; ///< The type of compression.
82  uint16_t channels; ///< Number of channels.
83  int32_t sample_rate; ///< Sampling rate.
84  uint16_t bits_per_sample; ///< Bits per compressed sample.
85  uint64_t bit_rate; ///< Bits of compressed data per second.
86  uint16_t flags; ///< Flags
87  unsigned block_align; ///< Bytes per compressed block.
88  uint16_t block_samples; ///< Decompressed samples per compressed block.
89 
90  enum AVCodecID codec_id; ///< The codec ID of the compression scheme.
91 
92  uint32_t data_size; ///< The size of the remaining audio data.
93  uint64_t data_offset; ///< The offset of the audio data within the file.
94 
95  uint32_t frame_size; ///< Number of bytes to put into an audio frame.
96 
97  uint64_t block_count; ///< Running counter of decompressed audio block.
99 
100 /** Context for demuxing an XMV file. */
101 typedef struct XMVDemuxContext {
102  uint16_t audio_track_count; ///< Number of audio track in this file.
103 
104  uint32_t this_packet_size; ///< Size of the current packet.
105  uint32_t next_packet_size; ///< Size of the next packet.
106 
107  uint64_t this_packet_offset; ///< Offset of the current packet.
108  uint64_t next_packet_offset; ///< Offset of the next packet.
109 
110  uint16_t current_stream; ///< The index of the stream currently handling.
111  uint16_t stream_count; ///< The number of streams in this file.
112 
113  uint32_t video_duration;
114  uint32_t video_width;
115  uint32_t video_height;
116 
117  XMVVideoPacket video; ///< The video packet contained in each packet.
118  XMVAudioPacket *audio; ///< The audio packets contained in each packet.
120 
121 static int xmv_probe(const AVProbeData *p)
122 {
123  uint32_t file_version;
124 
125  if (p->buf_size < XMV_MIN_HEADER_SIZE)
126  return 0;
127 
128  file_version = AV_RL32(p->buf + 16);
129  if ((file_version == 0) || (file_version > 4))
130  return 0;
131 
132  if (!memcmp(p->buf + 12, "xobX", 4))
133  return AVPROBE_SCORE_MAX;
134 
135  return 0;
136 }
137 
139 {
140  XMVDemuxContext *xmv = s->priv_data;
141 
142  av_freep(&xmv->audio);
143 
144  return 0;
145 }
146 
148 {
149  XMVDemuxContext *xmv = s->priv_data;
150  AVIOContext *pb = s->pb;
151 
152  uint32_t file_version;
153  uint32_t this_packet_size;
154  uint16_t audio_track;
155 
156  s->ctx_flags |= AVFMTCTX_NOHEADER;
157 
158  avio_skip(pb, 4); /* Next packet size */
159 
160  this_packet_size = avio_rl32(pb);
161 
162  avio_skip(pb, 4); /* Max packet size */
163  avio_skip(pb, 4); /* "xobX" */
164 
165  file_version = avio_rl32(pb);
166  if ((file_version != 4) && (file_version != 2))
167  avpriv_request_sample(s, "Uncommon version %"PRIu32"", file_version);
168 
169  /* Video tracks */
170 
171  xmv->video_width = avio_rl32(pb);
172  xmv->video_height = avio_rl32(pb);
173  xmv->video_duration = avio_rl32(pb);
174 
175  /* Audio tracks */
176 
177  xmv->audio_track_count = avio_rl16(pb);
178 
179  avio_skip(pb, 2); /* Unknown (padding?) */
180 
181  xmv->audio = av_calloc(xmv->audio_track_count, sizeof(*xmv->audio));
182  if (!xmv->audio)
183  return AVERROR(ENOMEM);
184 
185  for (audio_track = 0; audio_track < xmv->audio_track_count; audio_track++) {
186  XMVAudioPacket *packet = &xmv->audio[audio_track];
187 
188  packet->compression = avio_rl16(pb);
189  packet->channels = avio_rl16(pb);
190  packet->sample_rate = avio_rl32(pb);
191  packet->bits_per_sample = avio_rl16(pb);
192  packet->flags = avio_rl16(pb);
193 
194  packet->bit_rate = (uint64_t)packet->bits_per_sample *
195  packet->sample_rate *
196  packet->channels;
197  packet->block_align = XMV_BLOCK_ALIGN_SIZE * packet->channels;
198  packet->block_samples = 64;
199  packet->codec_id = ff_wav_codec_get_id(packet->compression,
200  packet->bits_per_sample);
201 
202  packet->stream_index = -1;
203 
204  packet->frame_size = 0;
205  packet->block_count = 0;
206 
207  /* TODO: ADPCM'd 5.1 sound is encoded in three separate streams.
208  * Those need to be interleaved to a proper 5.1 stream. */
209  if (packet->flags & XMV_AUDIO_ADPCM51)
210  av_log(s, AV_LOG_WARNING, "Unsupported 5.1 ADPCM audio stream "
211  "(0x%04X)\n", packet->flags);
212 
213  if (!packet->channels || packet->sample_rate <= 0 ||
214  packet->channels >= UINT16_MAX / XMV_BLOCK_ALIGN_SIZE) {
215  av_log(s, AV_LOG_ERROR, "Invalid parameters for audio track %"PRIu16".\n",
216  audio_track);
217  return AVERROR_INVALIDDATA;
218  }
219  }
220 
221 
222  /* Initialize the packet context */
223 
224  xmv->next_packet_offset = avio_tell(pb);
225  if (this_packet_size < xmv->next_packet_offset)
226  return AVERROR_INVALIDDATA;
227  xmv->next_packet_size = this_packet_size - xmv->next_packet_offset;
228  xmv->stream_count = xmv->audio_track_count + 1;
229 
230  return 0;
231 }
232 
233 static void xmv_read_extradata(uint8_t *extradata, AVIOContext *pb)
234 {
235  /* Read the XMV extradata */
236 
237  uint32_t data = avio_rl32(pb);
238 
239  int mspel_bit = !!(data & 0x01);
240  int loop_filter = !!(data & 0x02);
241  int abt_flag = !!(data & 0x04);
242  int j_type_bit = !!(data & 0x08);
243  int top_left_mv_flag = !!(data & 0x10);
244  int per_mb_rl_bit = !!(data & 0x20);
245  int slice_count = (data >> 6) & 7;
246 
247  /* Write it back as standard WMV2 extradata */
248 
249  data = 0;
250 
251  data |= mspel_bit << 15;
252  data |= loop_filter << 14;
253  data |= abt_flag << 13;
254  data |= j_type_bit << 12;
255  data |= top_left_mv_flag << 11;
256  data |= per_mb_rl_bit << 10;
257  data |= slice_count << 7;
258 
259  AV_WB32(extradata, data);
260 }
261 
263 {
264  XMVDemuxContext *xmv = s->priv_data;
265  AVIOContext *pb = s->pb;
266  int ret;
267 
268  uint8_t data[8];
269  uint16_t audio_track;
270  uint64_t data_offset;
271 
272  /* Next packet size */
273  xmv->next_packet_size = avio_rl32(pb);
274 
275  /* Packet video header */
276 
277  if ((ret = ffio_read_size(pb, data, 8)) < 0)
278  return ret;
279 
280  xmv->video.data_size = AV_RL32(data) & 0x007FFFFF;
281 
282  xmv->video.current_frame = 0;
283  xmv->video.frame_count = (AV_RL32(data) >> 23) & 0xFF;
284 
285  xmv->video.has_extradata = (data[3] & 0x80) != 0;
286 
287  if (!xmv->video.created) {
289  if (!vst)
290  return AVERROR(ENOMEM);
291 
292  avpriv_set_pts_info(vst, 32, 1, 1000);
293 
296  vst->codecpar->codec_tag = MKBETAG('W', 'M', 'V', '2');
297  vst->codecpar->width = xmv->video_width;
298  vst->codecpar->height = xmv->video_height;
299 
300  vst->duration = xmv->video_duration;
301 
302  xmv->video.stream_index = vst->index;
303 
304  xmv->video.created = 1;
305  }
306 
307  /* Adding the audio data sizes and the video data size keeps you 4 bytes
308  * short for every audio track. But as playing around with XMV files with
309  * ADPCM audio showed, taking the extra 4 bytes from the audio data gives
310  * you either completely distorted audio or click (when skipping the
311  * remaining 68 bytes of the ADPCM block). Subtracting 4 bytes for every
312  * audio track from the video data works at least for the audio. Probably
313  * some alignment thing?
314  * The video data has (always?) lots of padding, so it should work out...
315  */
316  xmv->video.data_size -= xmv->audio_track_count * 4;
317 
318  xmv->current_stream = 0;
319  if (!xmv->video.frame_count) {
320  xmv->video.frame_count = 1;
321  xmv->current_stream = xmv->stream_count > 1;
322  }
323 
324  /* Packet audio header */
325 
326  for (audio_track = 0; audio_track < xmv->audio_track_count; audio_track++) {
327  XMVAudioPacket *packet = &xmv->audio[audio_track];
328 
329  if ((ret = ffio_read_size(pb, data, 4)) < 0)
330  return ret;
331 
332  if (!packet->created) {
334  if (!ast)
335  return AVERROR(ENOMEM);
336 
338  ast->codecpar->codec_id = packet->codec_id;
339  ast->codecpar->codec_tag = packet->compression;
340  ast->codecpar->ch_layout.nb_channels = packet->channels;
341  ast->codecpar->sample_rate = packet->sample_rate;
343  ast->codecpar->bit_rate = packet->bit_rate;
344  ast->codecpar->block_align = 36 * packet->channels;
345 
346  avpriv_set_pts_info(ast, 32, packet->block_samples, packet->sample_rate);
347 
348  packet->stream_index = ast->index;
349 
350  ast->duration = xmv->video_duration;
351 
352  packet->created = 1;
353  }
354 
355  packet->data_size = AV_RL32(data) & 0x007FFFFF;
356  if ((packet->data_size == 0) && (audio_track != 0))
357  /* This happens when I create an XMV with several identical audio
358  * streams. From the size calculations, duplicating the previous
359  * stream's size works out, but the track data itself is silent.
360  * Maybe this should also redirect the offset to the previous track?
361  */
362  packet->data_size = xmv->audio[audio_track - 1].data_size;
363 
364  /* Carve up the audio data in frame_count slices */
365  packet->frame_size = packet->data_size / xmv->video.frame_count;
366  packet->frame_size -= packet->frame_size % packet->block_align;
367  }
368 
369  /* Packet data offsets */
370 
371  data_offset = avio_tell(pb);
372 
373  xmv->video.data_offset = data_offset;
374  data_offset += xmv->video.data_size;
375 
376  for (audio_track = 0; audio_track < xmv->audio_track_count; audio_track++) {
377  xmv->audio[audio_track].data_offset = data_offset;
378  data_offset += xmv->audio[audio_track].data_size;
379  }
380 
381  /* Video frames header */
382 
383  /* Read new video extra data */
384  if (xmv->video.data_size > 0) {
385  if (xmv->video.has_extradata) {
387 
388  xmv->video.data_size -= 4;
389  xmv->video.data_offset += 4;
390 
391  if (xmv->video.stream_index >= 0) {
392  AVStream *vst = s->streams[xmv->video.stream_index];
393 
394  av_assert0(xmv->video.stream_index < s->nb_streams);
395 
396  if (vst->codecpar->extradata_size < 4) {
397  if ((ret = ff_alloc_extradata(vst->codecpar, 4)) < 0)
398  return ret;
399  }
400 
401  memcpy(vst->codecpar->extradata, xmv->video.extradata, 4);
402  }
403  }
404  }
405 
406  return 0;
407 }
408 
410 {
411  XMVDemuxContext *xmv = s->priv_data;
412  AVIOContext *pb = s->pb;
413  int result;
414 
415  if (xmv->this_packet_offset == xmv->next_packet_offset)
416  return AVERROR_EOF;
417 
418  /* Seek to it */
420  if (avio_seek(pb, xmv->this_packet_offset, SEEK_SET) != xmv->this_packet_offset)
421  return AVERROR_INVALIDDATA;
422 
423  /* Update the size */
425  if (xmv->this_packet_size < (12 + xmv->audio_track_count * 4))
426  return AVERROR_INVALIDDATA;
427 
428  /* Process the header */
430  if (result)
431  return result;
432 
433  /* Update the offset */
435 
436  return 0;
437 }
438 
440  AVPacket *pkt, uint32_t stream)
441 {
442  XMVDemuxContext *xmv = s->priv_data;
443  AVIOContext *pb = s->pb;
444  XMVAudioPacket *audio = &xmv->audio[stream];
445 
446  uint32_t data_size;
447  uint32_t block_count;
448  int result;
449 
450  /* Seek to it */
451  if (avio_seek(pb, audio->data_offset, SEEK_SET) != audio->data_offset)
452  return AVERROR_INVALIDDATA;
453 
454  if ((xmv->video.current_frame + 1) < xmv->video.frame_count)
455  /* Not the last frame, get at most frame_size bytes. */
456  data_size = FFMIN(audio->frame_size, audio->data_size);
457  else
458  /* Last frame, get the rest. */
459  data_size = audio->data_size;
460 
461  /* Read the packet */
462  result = av_get_packet(pb, pkt, data_size);
463  if (result <= 0)
464  return result;
465 
466  pkt->stream_index = audio->stream_index;
467 
468  /* Calculate the PTS */
469 
470  block_count = data_size / audio->block_align;
471 
472  pkt->duration = block_count;
473  pkt->pts = audio->block_count;
475 
476  audio->block_count += block_count;
477 
478  /* Advance offset */
479  audio->data_size -= data_size;
480  audio->data_offset += data_size;
481 
482  return 0;
483 }
484 
486  AVPacket *pkt)
487 {
488  XMVDemuxContext *xmv = s->priv_data;
489  AVIOContext *pb = s->pb;
490  XMVVideoPacket *video = &xmv->video;
491 
492  int result;
493  uint32_t frame_header;
494  uint32_t frame_size, frame_timestamp;
495  uint8_t *data, *end;
496 
497  /* Seek to it */
498  if (avio_seek(pb, video->data_offset, SEEK_SET) != video->data_offset)
499  return AVERROR_INVALIDDATA;
500 
501  /* Read the frame header */
502  frame_header = avio_rl32(pb);
503 
504  frame_size = (frame_header & 0x1FFFF) * 4 + 4;
505  frame_timestamp = (frame_header >> 17);
506 
507  if ((frame_size + 4) > video->data_size)
508  return AVERROR_INVALIDDATA;
509 
510  /* Get the packet data */
512  if (result != frame_size)
513  return result;
514 
515  /* Contrary to normal WMV2 video, the bit stream in XMV's
516  * WMV2 is little-endian.
517  * TODO: This manual swap is of course suboptimal.
518  */
519  for (data = pkt->data, end = pkt->data + frame_size; data < end; data += 4)
521 
522  pkt->stream_index = video->stream_index;
523 
524  /* Calculate the PTS */
525 
526  video->last_pts = frame_timestamp + video->pts;
527 
528  pkt->duration = 0;
529  pkt->pts = video->last_pts;
531 
532  video->pts += frame_timestamp;
533 
534  /* Keyframe? */
535  pkt->flags = (pkt->data[0] & 0x80) ? 0 : AV_PKT_FLAG_KEY;
536 
537  /* Advance offset */
538  video->data_size -= frame_size + 4;
539  video->data_offset += frame_size + 4;
540 
541  return 0;
542 }
543 
545  AVPacket *pkt)
546 {
547  XMVDemuxContext *xmv = s->priv_data;
548  int result;
549 
550  if (xmv->video.current_frame == xmv->video.frame_count) {
551  /* No frames left in this packet, so we fetch a new one */
552 
554  if (result)
555  return result;
556  }
557 
558  if (xmv->current_stream == 0) {
559  /* Fetch a video frame */
560 
562  } else {
563  /* Fetch an audio frame */
564 
566  }
567  if (result) {
568  xmv->current_stream = 0;
569  xmv->video.current_frame = xmv->video.frame_count;
570  return result;
571  }
572 
573 
574  /* Increase our counters */
575  if (++xmv->current_stream >= xmv->stream_count) {
576  xmv->current_stream = 0;
577  xmv->video.current_frame += 1;
578  }
579 
580  return 0;
581 }
582 
584  .p.name = "xmv",
585  .p.long_name = NULL_IF_CONFIG_SMALL("Microsoft XMV"),
586  .p.extensions = "xmv",
587  .priv_data_size = sizeof(XMVDemuxContext),
588  .flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
593 };
XMVDemuxContext::video_height
uint32_t video_height
Definition: xmv.c:115
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:216
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:69
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
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
frame_header
static int FUNC() frame_header(CodedBitstreamContext *ctx, RWContext *rw, APVRawFrameHeader *current)
Definition: cbs_apv_syntax_template.c:142
XMVDemuxContext::audio
XMVAudioPacket * audio
The audio packets contained in each packet.
Definition: xmv.c:118
XMVAudioPacket::flags
uint16_t flags
Flags.
Definition: xmv.c:86
int64_t
long long int64_t
Definition: coverity.c:34
XMVDemuxContext::video_duration
uint32_t video_duration
Definition: xmv.c:113
ff_wav_codec_get_id
enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
Definition: riffdec.c:221
AVPacket::data
uint8_t * data
Definition: packet.h:588
data
const char data[16]
Definition: mxf.c:149
XMVAudioPacket::frame_size
uint32_t frame_size
Number of bytes to put into an audio frame.
Definition: xmv.c:95
XMVDemuxContext::next_packet_size
uint32_t next_packet_size
Size of the next packet.
Definition: xmv.c:105
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: packet.h:606
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: codec_par.h:59
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
AV_PKT_FLAG_KEY
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: packet.h:643
xmv_fetch_new_packet
static int xmv_fetch_new_packet(AVFormatContext *s)
Definition: xmv.c:409
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:463
XMVVideoPacket
A video packet with an XMV file.
Definition: xmv.c:58
avpriv_set_pts_info
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:777
XMVAudioPacket::created
int created
Definition: xmv.c:77
xmv_read_packet
static int xmv_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: xmv.c:544
XMVAudioPacket::block_align
unsigned block_align
Bytes per compressed block.
Definition: xmv.c:87
XMVVideoPacket::created
int created
Definition: xmv.c:59
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:143
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:494
xmv_read_header
static int xmv_read_header(AVFormatContext *s)
Definition: xmv.c:147
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:803
XMVAudioPacket::bits_per_sample
uint16_t bits_per_sample
Bits per compressed sample.
Definition: xmv.c:84
avio_rl16
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:717
XMVVideoPacket::data_size
uint32_t data_size
The size of the remaining video data.
Definition: xmv.c:62
avassert.h
pkt
AVPacket * pkt
Definition: movenc.c:60
XMVAudioPacket::bit_rate
uint64_t bit_rate
Bits of compressed data per second.
Definition: xmv.c:85
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_read_callback.c:42
XMVAudioPacket
An audio packet with an XMV file.
Definition: xmv.c:76
xmv_process_packet_header
static int xmv_process_packet_header(AVFormatContext *s)
Definition: xmv.c:262
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
XMVDemuxContext::this_packet_offset
uint64_t this_packet_offset
Offset of the current packet.
Definition: xmv.c:107
XMVDemuxContext::current_stream
uint16_t current_stream
The index of the stream currently handling.
Definition: xmv.c:110
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:549
frame_size
int frame_size
Definition: mxfenc.c:2487
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:201
AVCodecParameters::width
int width
Video only.
Definition: codec_par.h:134
XMVDemuxContext::next_packet_offset
uint64_t next_packet_offset
Offset of the next packet.
Definition: xmv.c:108
XMVVideoPacket::current_frame
uint32_t current_frame
The current frame within this video packet.
Definition: xmv.c:65
AV_CODEC_ID_WMV2
@ AV_CODEC_ID_WMV2
Definition: codec_id.h:70
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:41
XMVVideoPacket::has_extradata
int has_extradata
Does the video packet contain extra data?
Definition: xmv.c:68
xmv_fetch_audio_packet
static int xmv_fetch_audio_packet(AVFormatContext *s, AVPacket *pkt, uint32_t stream)
Definition: xmv.c:439
XMVDemuxContext::this_packet_size
uint32_t this_packet_size
Size of the current packet.
Definition: xmv.c:104
FF_INFMT_FLAG_INIT_CLEANUP
#define FF_INFMT_FLAG_INIT_CLEANUP
For an FFInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
Definition: demux.h:35
AVFormatContext
Format I/O context.
Definition: avformat.h:1264
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:767
result
and forward the result(frame or status change) to the corresponding input. If nothing is possible
XMVAudioPacket::channels
uint16_t channels
Number of channels.
Definition: xmv.c:82
NULL
#define NULL
Definition: coverity.c:32
AVFMTCTX_NOHEADER
#define AVFMTCTX_NOHEADER
signal that no header is present (streams are added dynamically)
Definition: avformat.h:1215
XMVAudioPacket::data_size
uint32_t data_size
The size of the remaining audio data.
Definition: xmv.c:92
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:451
AVCodecParameters::ch_layout
AVChannelLayout ch_layout
Audio only.
Definition: codec_par.h:180
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:184
XMV_BLOCK_ALIGN_SIZE
#define XMV_BLOCK_ALIGN_SIZE
Definition: xmv.c:55
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:49
AVCodecParameters::extradata_size
int extradata_size
Size of the extradata content in bytes.
Definition: codec_par.h:73
AV_WB32
#define AV_WB32(p, v)
Definition: intreadwrite.h:415
avio_rl32
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:733
AVIOContext
Bytestream IO Context.
Definition: avio.h:160
XMVAudioPacket::sample_rate
int32_t sample_rate
Sampling rate.
Definition: xmv.c:83
XMVAudioPacket::block_samples
uint16_t block_samples
Decompressed samples per compressed block.
Definition: xmv.c:88
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:94
XMVDemuxContext::audio_track_count
uint16_t audio_track_count
Number of audio track in this file.
Definition: xmv.c:102
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:247
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
XMV_AUDIO_ADPCM51
#define XMV_AUDIO_ADPCM51
Audio flag: Any of the ADPCM'd 5.1 stream flags.
Definition: xmv.c:51
XMV_MIN_HEADER_SIZE
#define XMV_MIN_HEADER_SIZE
The min size of an XMV header.
Definition: xmv.c:41
FFInputFormat::p
AVInputFormat p
The public AVInputFormat.
Definition: demux.h:51
AVPacket::dts
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Definition: packet.h:587
XMVDemuxContext::video_width
uint32_t video_width
Definition: xmv.c:114
XMVVideoPacket::stream_index
int stream_index
The decoder stream index for this video packet.
Definition: xmv.c:60
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:594
read_header
static int read_header(FFV1Context *f, RangeCoder *c)
Definition: ffv1dec.c:498
XMVVideoPacket::last_pts
int64_t last_pts
PTS of the last video frame.
Definition: xmv.c:71
XMVVideoPacket::data_offset
uint64_t data_offset
The offset of the video data within the file.
Definition: xmv.c:63
loop_filter
static void loop_filter(const H264Context *h, H264SliceContext *sl, int start_x, int end_x)
Definition: h264_slice.c:2432
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:581
avio_internal.h
AVCodecParameters::height
int height
Definition: codec_par.h:135
AVCodecParameters::block_align
int block_align
Audio only.
Definition: codec_par.h:191
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
demux.h
av_calloc
void * av_calloc(size_t nmemb, size_t size)
Definition: mem.c:264
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:98
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:744
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:236
ff_xmv_demuxer
const FFInputFormat ff_xmv_demuxer
Definition: xmv.c:583
xmv_read_close
static int xmv_read_close(AVFormatContext *s)
Definition: xmv.c:138
avformat.h
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
XMVAudioPacket::stream_index
int stream_index
The decoder stream index for this audio packet.
Definition: xmv.c:78
AVStream::index
int index
stream index in AVFormatContext
Definition: avformat.h:750
frame_header
Definition: truemotion1.c:88
XMVDemuxContext
Context for demuxing an XMV file.
Definition: xmv.c:101
xmv_read_extradata
static void xmv_read_extradata(uint8_t *extradata, AVIOContext *pb)
Definition: xmv.c:233
XMVAudioPacket::codec_id
enum AVCodecID codec_id
The codec ID of the compression scheme.
Definition: xmv.c:90
xmv_fetch_video_packet
static int xmv_fetch_video_packet(AVFormatContext *s, AVPacket *pkt)
Definition: xmv.c:485
video
A Quick Description Of Rate Distortion Theory We want to encode a video
Definition: rate_distortion.txt:3
XMVDemuxContext::video
XMVVideoPacket video
The video packet contained in each packet.
Definition: xmv.c:117
Windows::Graphics::DirectX::Direct3D11::p
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
Definition: vsrc_gfxcapture_winrt.hpp:53
AVPacket::stream_index
int stream_index
Definition: packet.h:590
XMVAudioPacket::data_offset
uint64_t data_offset
The offset of the audio data within the file.
Definition: xmv.c:93
XMVDemuxContext::stream_count
uint16_t stream_count
The number of streams in this file.
Definition: xmv.c:111
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:321
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:200
read_probe
static int read_probe(const AVProbeData *p)
Definition: cdg.c:30
XMVAudioPacket::compression
uint16_t compression
The type of compression.
Definition: xmv.c:81
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: codec_par.h:110
mem.h
XMVVideoPacket::extradata
uint8_t extradata[4]
The extra data.
Definition: xmv.c:69
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:37
XMVVideoPacket::frame_count
uint32_t frame_count
The amount of frames within this video packet.
Definition: xmv.c:66
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
AVPacket
This structure stores compressed data.
Definition: packet.h:565
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
riff.h
FFInputFormat
Definition: demux.h:47
XMVVideoPacket::pts
int64_t pts
PTS of the most current video frame.
Definition: xmv.c:72
int32_t
int32_t
Definition: audioconvert.c:56
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: codec_par.h:97
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
XMVAudioPacket::block_count
uint64_t block_count
Running counter of decompressed audio block.
Definition: xmv.c:97
ffio_read_size
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:665
xmv_probe
static int xmv_probe(const AVProbeData *p)
Definition: xmv.c:121
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:237