FFmpeg
frmdec.c
Go to the documentation of this file.
1 /*
2  * Megalux Frame demuxer
3  * Copyright (c) 2010 Peter Ross <pross@xvid.org>
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 /**
23  * @file
24  * Megalux Frame demuxer
25  */
26 
27 #include "libavutil/imgutils.h"
28 #include "libavutil/intreadwrite.h"
29 #include "avformat.h"
30 #include "demux.h"
31 
32 static const enum AVPixelFormat frm_pix_fmt_tags[] = {
38 };
39 
40 typedef struct {
41  int count;
42 } FrmContext;
43 
44 static int frm_read_probe(const AVProbeData *p)
45 {
46  if (p->buf_size > 8 &&
47  p->buf[0] == 'F' && p->buf[1] == 'R' && p->buf[2] == 'M' &&
48  AV_RL16(&p->buf[4]) && AV_RL16(&p->buf[6]))
49  return AVPROBE_SCORE_MAX / 4;
50  return 0;
51 }
52 
53 static int frm_read_header(AVFormatContext *avctx)
54 {
55  AVIOContext *pb = avctx->pb;
56  AVStream *st = avformat_new_stream(avctx, 0);
57  unsigned idx;
58 
59  if (!st)
60  return AVERROR(ENOMEM);
61 
64  avio_skip(pb, 3);
65 
66  idx = avio_r8(pb) - 1;
67  if (idx >= FF_ARRAY_ELEMS(frm_pix_fmt_tags))
68  return AVERROR_INVALIDDATA;
69  st->codecpar->format = frm_pix_fmt_tags[idx];
70 
71  st->codecpar->codec_tag = 0;
72  st->codecpar->width = avio_rl16(pb);
73  st->codecpar->height = avio_rl16(pb);
74  return 0;
75 }
76 
78 {
79  FrmContext *s = avctx->priv_data;
80  AVCodecParameters *par = avctx->streams[0]->codecpar;
81  int packet_size, ret;
82 
83  if (s->count)
84  return AVERROR_EOF;
85 
86  packet_size = av_image_get_buffer_size(par->format, par->width, par->height, 1);
87  if (packet_size < 0)
88  return AVERROR_INVALIDDATA;
89 
90  ret = av_get_packet(avctx->pb, pkt, packet_size);
91  if (ret < 0)
92  return ret;
93 
94  if (par->format == AV_PIX_FMT_BGRA) {
95  int i;
96  for (i = 3; i + 1 <= pkt->size; i += 4)
97  pkt->data[i] = 0xFF - pkt->data[i];
98  }
99 
100  pkt->stream_index = 0;
101  s->count++;
102 
103  return 0;
104 }
105 
107  .p.name = "frm",
108  .p.long_name = NULL_IF_CONFIG_SMALL("Megalux Frame"),
109  .priv_data_size = sizeof(FrmContext),
113 };
FrmContext
Definition: frmdec.c:40
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
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
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:47
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
AV_CODEC_ID_RAWVIDEO
@ AV_CODEC_ID_RAWVIDEO
Definition: codec_id.h:65
AVFormatContext::streams
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1323
AVPacket::data
uint8_t * data
Definition: packet.h:522
AV_PIX_FMT_BGRA
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:102
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: codec_par.h:59
AVProbeData::buf_size
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:454
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:463
avio_rl16
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:713
ff_frm_demuxer
const FFInputFormat ff_frm_demuxer
Definition: frmdec.c:106
pkt
AVPacket * pkt
Definition: movenc.c:59
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_read_callback.c:41
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
frm_read_probe
static int frm_read_probe(const AVProbeData *p)
Definition: frmdec.c:44
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:553
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:453
AVCodecParameters::width
int width
Video only.
Definition: codec_par.h:134
AV_RL16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
Definition: bytestream.h:94
AVFormatContext
Format I/O context.
Definition: avformat.h:1255
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:766
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:550
AVFormatContext::pb
AVIOContext * pb
I/O context.
Definition: avformat.h:1297
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:451
AV_PIX_FMT_BGR0
@ AV_PIX_FMT_BGR0
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
Definition: pixfmt.h:265
AVIOContext
Bytestream IO Context.
Definition: avio.h:160
AV_PIX_FMT_RGB24
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:75
AVPacket::size
int size
Definition: packet.h:523
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:106
FFInputFormat::p
AVInputFormat p
The public AVInputFormat.
Definition: demux.h:41
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:602
av_image_get_buffer_size
int av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height, int align)
Return the size in bytes of the amount of data required to store an image with the given parameters.
Definition: imgutils.c:466
AV_PIX_FMT_RGB0
@ AV_PIX_FMT_RGB0
packed RGB 8:8:8, 32bpp, RGBXRGBX... X=unused/undefined
Definition: pixfmt.h:263
frm_pix_fmt_tags
static enum AVPixelFormat frm_pix_fmt_tags[]
Definition: frmdec.c:32
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:255
AVCodecParameters::height
int height
Definition: codec_par.h:135
AV_PIX_FMT_RGB555
#define AV_PIX_FMT_RGB555
Definition: pixfmt.h:466
demux.h
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:103
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:743
avformat.h
frm_read_header
static int frm_read_header(AVFormatContext *avctx)
Definition: frmdec.c:53
frm_read_packet
static int frm_read_packet(AVFormatContext *avctx, AVPacket *pkt)
Definition: frmdec.c:77
AVPacket::stream_index
int stream_index
Definition: packet.h:524
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:317
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
read_probe
static int read_probe(const AVProbeData *p)
Definition: cdg.c:30
FrmContext::count
int count
Definition: frmdec.c:41
AVCodecParameters::format
int format
Definition: codec_par.h:92
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:499
FFInputFormat
Definition: demux.h:37
imgutils.h
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
AVFormatContext::priv_data
void * priv_data
Format private data.
Definition: avformat.h:1283