FFmpeg
mxpegdec.c
Go to the documentation of this file.
1 /*
2  * MxPEG decoder
3  * Copyright (c) 2011 Anatoly Nenashev
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 /**
24  * @file
25  * MxPEG decoder
26  */
27 
28 #include "internal.h"
29 #include "mjpeg.h"
30 #include "mjpegdec.h"
31 
32 typedef struct MXpegDecodeContext {
34  AVFrame *picture[2]; /* pictures array */
35  int picture_index; /* index of current picture */
36  int got_sof_data; /* true if SOF data successfully parsed */
37  int got_mxm_bitmask; /* true if MXM bitmask available */
38  uint8_t *mxm_bitmask; /* bitmask buffer */
39  unsigned bitmask_size; /* size of bitmask */
40  int has_complete_frame; /* true if has complete frame */
41  uint8_t *completion_bitmask; /* completion bitmask of macroblocks */
42  unsigned mb_width, mb_height; /* size of picture in MB's from MXM header */
44 
46 {
47  MXpegDecodeContext *s = avctx->priv_data;
48  MJpegDecodeContext *jpg = &s->jpg;
49  int i;
50 
51  jpg->picture_ptr = NULL;
52  ff_mjpeg_decode_end(avctx);
53 
54  for (i = 0; i < 2; ++i)
55  av_frame_free(&s->picture[i]);
56 
57  s->bitmask_size = 0;
58  av_freep(&s->mxm_bitmask);
59  av_freep(&s->completion_bitmask);
60 
61  return 0;
62 }
63 
65 {
66  MXpegDecodeContext *s = avctx->priv_data;
67 
68  s->picture[0] = av_frame_alloc();
69  s->picture[1] = av_frame_alloc();
70  if (!s->picture[0] || !s->picture[1]) {
71  mxpeg_decode_end(avctx);
72  return AVERROR(ENOMEM);
73  }
74 
75  s->jpg.picture_ptr = s->picture[0];
76  return ff_mjpeg_decode_init(avctx);
77 }
78 
80  const uint8_t *buf_ptr, int buf_size)
81 {
82  int len;
83  if (buf_size < 2)
84  return 0;
85  len = AV_RB16(buf_ptr);
86  skip_bits(&s->jpg.gb, 8*FFMIN(len,buf_size));
87 
88  return 0;
89 }
90 
92  const uint8_t *buf_ptr, int buf_size)
93 {
94  unsigned bitmask_size, mb_count;
95  int i;
96 
97  s->mb_width = AV_RL16(buf_ptr+4);
98  s->mb_height = AV_RL16(buf_ptr+6);
99  mb_count = s->mb_width * s->mb_height;
100 
101  bitmask_size = (mb_count + 7) >> 3;
102  if (bitmask_size > buf_size - 12) {
103  av_log(s->jpg.avctx, AV_LOG_ERROR,
104  "MXM bitmask is not complete\n");
105  return AVERROR(EINVAL);
106  }
107 
108  if (s->bitmask_size != bitmask_size) {
109  s->bitmask_size = 0;
110  av_freep(&s->mxm_bitmask);
111  s->mxm_bitmask = av_malloc(bitmask_size);
112  if (!s->mxm_bitmask) {
113  av_log(s->jpg.avctx, AV_LOG_ERROR,
114  "MXM bitmask memory allocation error\n");
115  return AVERROR(ENOMEM);
116  }
117 
118  av_freep(&s->completion_bitmask);
119  s->completion_bitmask = av_mallocz(bitmask_size);
120  if (!s->completion_bitmask) {
121  av_log(s->jpg.avctx, AV_LOG_ERROR,
122  "Completion bitmask memory allocation error\n");
123  return AVERROR(ENOMEM);
124  }
125 
126  s->bitmask_size = bitmask_size;
127  }
128 
129  memcpy(s->mxm_bitmask, buf_ptr + 12, bitmask_size);
130  s->got_mxm_bitmask = 1;
131 
132  if (!s->has_complete_frame) {
133  uint8_t completion_check = 0xFF;
134  for (i = 0; i < bitmask_size; ++i) {
135  s->completion_bitmask[i] |= s->mxm_bitmask[i];
136  completion_check &= s->completion_bitmask[i];
137  }
138  s->has_complete_frame = !(completion_check ^ 0xFF);
139  }
140 
141  return 0;
142 }
143 
145  const uint8_t *buf_ptr, int buf_size)
146 {
147  int len, ret = 0;
148  if (buf_size < 2)
149  return 0;
150  len = AV_RB16(buf_ptr);
151  if (len > 14 && len <= buf_size && !strncmp(buf_ptr + 2, "MXM", 3)) {
152  ret = mxpeg_decode_mxm(s, buf_ptr + 2, len - 2);
153  }
154  skip_bits(&s->jpg.gb, 8*FFMIN(len,buf_size));
155 
156  return ret;
157 }
158 
160  AVFrame *reference_ptr)
161 {
162  if ((jpg->width + 0x0F)>>4 != s->mb_width ||
163  (jpg->height + 0x0F)>>4 != s->mb_height) {
164  av_log(jpg->avctx, AV_LOG_ERROR,
165  "Picture dimensions stored in SOF and MXM mismatch\n");
166  return AVERROR(EINVAL);
167  }
168 
169  if (reference_ptr->data[0]) {
170  int i;
171  for (i = 0; i < MAX_COMPONENTS; ++i) {
172  if ( (!reference_ptr->data[i] ^ !jpg->picture_ptr->data[i]) ||
173  reference_ptr->linesize[i] != jpg->picture_ptr->linesize[i]) {
174  av_log(jpg->avctx, AV_LOG_ERROR,
175  "Dimensions of current and reference picture mismatch\n");
176  return AVERROR(EINVAL);
177  }
178  }
179  }
180 
181  return 0;
182 }
183 
185  void *data, int *got_frame,
186  AVPacket *avpkt)
187 {
188  const uint8_t *buf = avpkt->data;
189  int buf_size = avpkt->size;
190  MXpegDecodeContext *s = avctx->priv_data;
191  MJpegDecodeContext *jpg = &s->jpg;
192  const uint8_t *buf_end, *buf_ptr;
193  const uint8_t *unescaped_buf_ptr;
194  int unescaped_buf_size;
195  int start_code;
196  int ret;
197 
198  if (avctx->skip_frame == AVDISCARD_ALL)
199  return AVERROR_PATCHWELCOME;
200 
201  buf_ptr = buf;
202  buf_end = buf + buf_size;
203  jpg->got_picture = 0;
204  s->got_mxm_bitmask = 0;
205  s->got_sof_data = !!s->got_sof_data;
206  while (buf_ptr < buf_end) {
207  start_code = ff_mjpeg_find_marker(jpg, &buf_ptr, buf_end,
208  &unescaped_buf_ptr, &unescaped_buf_size);
209  if (start_code < 0)
210  goto the_end;
211  {
212  init_get_bits(&jpg->gb, unescaped_buf_ptr, unescaped_buf_size*8);
213 
214  if (start_code >= APP0 && start_code <= APP15) {
215  mxpeg_decode_app(s, unescaped_buf_ptr, unescaped_buf_size);
216  }
217 
218  switch (start_code) {
219  case SOI:
220  if (jpg->got_picture) //emulating EOI
221  goto the_end;
222  break;
223  case EOI:
224  goto the_end;
225  case DQT:
226  ret = ff_mjpeg_decode_dqt(jpg);
227  if (ret < 0) {
228  av_log(avctx, AV_LOG_ERROR,
229  "quantization table decode error\n");
230  return ret;
231  }
232  break;
233  case DHT:
234  ret = ff_mjpeg_decode_dht(jpg);
235  if (ret < 0) {
236  av_log(avctx, AV_LOG_ERROR,
237  "huffman table decode error\n");
238  return ret;
239  }
240  break;
241  case COM:
242  ret = mxpeg_decode_com(s, unescaped_buf_ptr,
243  unescaped_buf_size);
244  if (ret < 0)
245  return ret;
246  break;
247  case SOF0:
248  if (s->got_sof_data > 1) {
249  av_log(avctx, AV_LOG_ERROR,
250  "Multiple SOF in a frame\n");
251  return AVERROR_INVALIDDATA;
252  }
253  ret = ff_mjpeg_decode_sof(jpg);
254  if (ret < 0) {
255  av_log(avctx, AV_LOG_ERROR,
256  "SOF data decode error\n");
257  s->got_sof_data = 0;
258  return ret;
259  }
260  if (jpg->interlaced) {
261  av_log(avctx, AV_LOG_ERROR,
262  "Interlaced mode not supported in MxPEG\n");
263  s->got_sof_data = 0;
264  return AVERROR(EINVAL);
265  }
266  s->got_sof_data ++;
267  break;
268  case SOS:
269  if (!s->got_sof_data) {
270  av_log(avctx, AV_LOG_WARNING,
271  "Can not process SOS without SOF data, skipping\n");
272  break;
273  }
274  if (!jpg->got_picture) {
275  if (jpg->first_picture) {
276  av_log(avctx, AV_LOG_WARNING,
277  "First picture has no SOF, skipping\n");
278  break;
279  }
280  if (!s->got_mxm_bitmask){
281  av_log(avctx, AV_LOG_WARNING,
282  "Non-key frame has no MXM, skipping\n");
283  break;
284  }
285  /* use stored SOF data to allocate current picture */
287  if ((ret = ff_get_buffer(avctx, jpg->picture_ptr,
289  return ret;
291  jpg->picture_ptr->key_frame = 0;
292  jpg->got_picture = 1;
293  } else {
295  jpg->picture_ptr->key_frame = 1;
296  }
297 
298  if (s->got_mxm_bitmask) {
299  AVFrame *reference_ptr = s->picture[s->picture_index ^ 1];
300  if (mxpeg_check_dimensions(s, jpg, reference_ptr) < 0)
301  break;
302 
303  /* allocate dummy reference picture if needed */
304  if (!reference_ptr->data[0] &&
305  (ret = ff_get_buffer(avctx, reference_ptr,
307  return ret;
308 
309  ret = ff_mjpeg_decode_sos(jpg, s->mxm_bitmask, s->bitmask_size, reference_ptr);
310  if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
311  return ret;
312  } else {
313  ret = ff_mjpeg_decode_sos(jpg, NULL, 0, NULL);
314  if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
315  return ret;
316  }
317 
318  break;
319  }
320 
321  buf_ptr += (get_bits_count(&jpg->gb)+7) >> 3;
322  }
323 
324  }
325 
326 the_end:
327  if (jpg->got_picture) {
328  int ret = av_frame_ref(data, jpg->picture_ptr);
329  if (ret < 0)
330  return ret;
331  *got_frame = 1;
332 
333  s->picture_index ^= 1;
334  jpg->picture_ptr = s->picture[s->picture_index];
335 
336  if (!s->has_complete_frame) {
337  if (!s->got_mxm_bitmask)
338  s->has_complete_frame = 1;
339  else
340  *got_frame = 0;
341  }
342  }
343 
344  return buf_ptr - buf;
345 }
346 
348  .name = "mxpeg",
349  .long_name = NULL_IF_CONFIG_SMALL("Mobotix MxPEG video"),
350  .type = AVMEDIA_TYPE_VIDEO,
351  .id = AV_CODEC_ID_MXPEG,
352  .priv_data_size = sizeof(MXpegDecodeContext),
354  .close = mxpeg_decode_end,
356  .capabilities = AV_CODEC_CAP_DR1,
357  .max_lowres = 3,
358  .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
359 };
AVCodec
AVCodec.
Definition: avcodec.h:3481
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
FF_CODEC_CAP_INIT_THREADSAFE
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:40
mjpeg.h
MJpegDecodeContext::avctx
AVCodecContext * avctx
Definition: mjpegdec.h:48
init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
MJpegDecodeContext::height
int height
Definition: mjpegdec.h:82
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
SOS
@ SOS
Definition: mjpeg.h:72
MXpegDecodeContext::mb_width
unsigned mb_width
Definition: mxpegdec.c:42
SOF0
@ SOF0
Definition: mjpeg.h:39
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:2694
get_bits_count
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:219
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:202
mjpegdec.h
start_code
static const uint8_t start_code[]
Definition: videotoolboxenc.c:173
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:295
internal.h
AVPacket::data
uint8_t * data
Definition: avcodec.h:1477
MXpegDecodeContext::got_mxm_bitmask
int got_mxm_bitmask
Definition: mxpegdec.c:37
data
const char data[16]
Definition: mxf.c:91
MJpegDecodeContext::first_picture
int first_picture
Definition: mjpegdec.h:61
MXpegDecodeContext::mb_height
unsigned mb_height
Definition: mxpegdec.c:42
AV_CODEC_ID_MXPEG
@ AV_CODEC_ID_MXPEG
Definition: avcodec.h:364
init_get_bits
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:659
MXpegDecodeContext
Definition: mxpegdec.c:32
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:309
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:31
APP15
@ APP15
Definition: mjpeg.h:94
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:467
ff_mjpeg_decode_dht
int ff_mjpeg_decode_dht(MJpegDecodeContext *s)
Definition: mjpegdec.c:241
ff_mjpeg_decode_init
av_cold int ff_mjpeg_decode_init(AVCodecContext *avctx)
Definition: mjpegdec.c:139
AVCodecContext::skip_frame
enum AVDiscard skip_frame
Skip decoding for selected frames.
Definition: avcodec.h:3040
AVFrame::key_frame
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:373
av_frame_alloc
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:189
MJpegDecodeContext::picture_ptr
AVFrame * picture_ptr
Definition: mjpegdec.h:100
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
buf
void * buf
Definition: avisynth_c.h:766
av_cold
#define av_cold
Definition: attributes.h:84
COM
@ COM
Definition: mjpeg.h:111
decode
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:42
MXpegDecodeContext::picture
AVFrame * picture[2]
Definition: mxpegdec.c:34
s
#define s(width, name)
Definition: cbs_vp9.c:257
AV_GET_BUFFER_FLAG_REF
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
Definition: avcodec.h:1176
MJpegDecodeContext::interlaced
int interlaced
Definition: mjpegdec.h:62
mxpeg_decode_mxm
static int mxpeg_decode_mxm(MXpegDecodeContext *s, const uint8_t *buf_ptr, int buf_size)
Definition: mxpegdec.c:91
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:90
ff_mjpeg_decode_end
av_cold int ff_mjpeg_decode_end(AVCodecContext *avctx)
Definition: mjpegdec.c:2748
AVDISCARD_ALL
@ AVDISCARD_ALL
discard all
Definition: avcodec.h:811
mxpeg_decode_frame
static int mxpeg_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: mxpegdec.c:184
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
ff_mjpeg_decode_dqt
int ff_mjpeg_decode_dqt(MJpegDecodeContext *s)
Definition: mjpegdec.c:200
MJpegDecodeContext::gb
GetBitContext gb
Definition: mjpegdec.h:49
MXpegDecodeContext::mxm_bitmask
uint8_t * mxm_bitmask
Definition: mxpegdec.c:38
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:274
MJpegDecodeContext
Definition: mjpegdec.h:46
AV_EF_EXPLODE
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: avcodec.h:2705
MJpegDecodeContext::width
int width
Definition: mjpegdec.h:82
AVFrame::pict_type
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:378
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1965
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:981
AVPacket::size
int size
Definition: avcodec.h:1478
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
av_frame_ref
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition: frame.c:443
ff_mjpeg_decode_sos
int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask, int mb_bitmask_size, const AVFrame *reference)
Definition: mjpegdec.c:1570
MXpegDecodeContext::picture_index
int picture_index
Definition: mxpegdec.c:35
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
DQT
@ DQT
Definition: mjpeg.h:73
mxpeg_decode_app
static int mxpeg_decode_app(MXpegDecodeContext *s, const uint8_t *buf_ptr, int buf_size)
Definition: mxpegdec.c:79
MXpegDecodeContext::got_sof_data
int got_sof_data
Definition: mxpegdec.c:36
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
EOI
@ EOI
Definition: mjpeg.h:71
mxpeg_decode_init
static av_cold int mxpeg_decode_init(AVCodecContext *avctx)
Definition: mxpegdec.c:64
ff_mxpeg_decoder
AVCodec ff_mxpeg_decoder
Definition: mxpegdec.c:347
uint8_t
uint8_t
Definition: audio_convert.c:194
av_frame_unref
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:553
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:236
AVCodec::name
const char * name
Name of the codec implementation.
Definition: avcodec.h:3488
len
int len
Definition: vorbis_enc_data.h:452
DHT
@ DHT
Definition: mjpeg.h:56
mxpeg_decode_end
static av_cold int mxpeg_decode_end(AVCodecContext *avctx)
Definition: mxpegdec.c:45
MXpegDecodeContext::jpg
MJpegDecodeContext jpg
Definition: mxpegdec.c:33
mxpeg_check_dimensions
static int mxpeg_check_dimensions(MXpegDecodeContext *s, MJpegDecodeContext *jpg, AVFrame *reference_ptr)
Definition: mxpegdec.c:159
ret
ret
Definition: filter_design.txt:187
ff_mjpeg_find_marker
int ff_mjpeg_find_marker(MJpegDecodeContext *s, const uint8_t **buf_ptr, const uint8_t *buf_end, const uint8_t **unescaped_buf_ptr, int *unescaped_buf_size)
Definition: mjpegdec.c:2135
MXpegDecodeContext::bitmask_size
unsigned bitmask_size
Definition: mxpegdec.c:39
AVCodecContext
main external API structure.
Definition: avcodec.h:1565
ff_mjpeg_decode_sof
int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
Definition: mjpegdec.c:305
APP0
@ APP0
Definition: mjpeg.h:79
MJpegDecodeContext::got_picture
int got_picture
we found a SOF and picture is valid, too.
Definition: mjpegdec.h:101
AV_PICTURE_TYPE_P
@ AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:275
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
SOI
@ SOI
Definition: mjpeg.h:70
AVPacket
This structure stores compressed data.
Definition: avcodec.h:1454
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:1592
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
MAX_COMPONENTS
#define MAX_COMPONENTS
Definition: mjpegdec.h:44
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:326
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
mxpeg_decode_com
static int mxpeg_decode_com(MXpegDecodeContext *s, const uint8_t *buf_ptr, int buf_size)
Definition: mxpegdec.c:144
MXpegDecodeContext::has_complete_frame
int has_complete_frame
Definition: mxpegdec.c:40
AV_RB16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
Definition: bytestream.h:94
MXpegDecodeContext::completion_bitmask
uint8_t * completion_bitmask
Definition: mxpegdec.c:41