ptx.c
Go to the documentation of this file.
1 /*
2  * V.Flash PTX (.ptx) image decoder
3  * Copyright (c) 2007 Ivo van Poorten
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "libavutil/intreadwrite.h"
23 #include "libavutil/imgutils.h"
24 #include "avcodec.h"
25 
26 typedef struct PTXContext {
28 } PTXContext;
29 
30 static av_cold int ptx_init(AVCodecContext *avctx) {
31  PTXContext *s = avctx->priv_data;
32 
34  avctx->coded_frame= &s->picture;
35 
36  return 0;
37 }
38 
39 static int ptx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
40  AVPacket *avpkt) {
41  const uint8_t *buf = avpkt->data;
42  const uint8_t *buf_end = avpkt->data + avpkt->size;
43  PTXContext * const s = avctx->priv_data;
44  AVFrame *picture = data;
45  AVFrame * const p = &s->picture;
46  unsigned int offset, w, h, y, stride, bytes_per_pixel;
47  uint8_t *ptr;
48 
49  if (buf_end - buf < 14)
50  return AVERROR_INVALIDDATA;
51  offset = AV_RL16(buf);
52  w = AV_RL16(buf+8);
53  h = AV_RL16(buf+10);
54  bytes_per_pixel = AV_RL16(buf+12) >> 3;
55 
56  if (bytes_per_pixel != 2) {
57  av_log_ask_for_sample(avctx, "Image format is not RGB15.\n");
58  return -1;
59  }
60 
61  avctx->pix_fmt = PIX_FMT_RGB555;
62 
63  if (buf_end - buf < offset)
64  return AVERROR_INVALIDDATA;
65  if (offset != 0x2c)
66  av_log_ask_for_sample(avctx, "offset != 0x2c\n");
67 
68  buf += offset;
69 
70  if (p->data[0])
71  avctx->release_buffer(avctx, p);
72 
73  if (av_image_check_size(w, h, 0, avctx))
74  return -1;
75  if (w != avctx->width || h != avctx->height)
76  avcodec_set_dimensions(avctx, w, h);
77  if (avctx->get_buffer(avctx, p) < 0) {
78  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
79  return -1;
80  }
81 
83 
84  ptr = p->data[0];
85  stride = p->linesize[0];
86 
87  for (y = 0; y < h && buf_end - buf >= w * bytes_per_pixel; y++) {
88 #if HAVE_BIGENDIAN
89  unsigned int x;
90  for (x=0; x<w*bytes_per_pixel; x+=bytes_per_pixel)
91  AV_WN16(ptr+x, AV_RL16(buf+x));
92 #else
93  memcpy(ptr, buf, w*bytes_per_pixel);
94 #endif
95  ptr += stride;
96  buf += w*bytes_per_pixel;
97  }
98 
99  *picture = s->picture;
100  *data_size = sizeof(AVPicture);
101 
102  if (y < h) {
103  av_log(avctx, AV_LOG_WARNING, "incomplete packet\n");
104  return avpkt->size;
105  }
106 
107  return offset + w*h*bytes_per_pixel;
108 }
109 
110 static av_cold int ptx_end(AVCodecContext *avctx) {
111  PTXContext *s = avctx->priv_data;
112 
113  if(s->picture.data[0])
114  avctx->release_buffer(avctx, &s->picture);
115 
116  return 0;
117 }
118 
120  .name = "ptx",
121  .type = AVMEDIA_TYPE_VIDEO,
122  .id = CODEC_ID_PTX,
123  .priv_data_size = sizeof(PTXContext),
124  .init = ptx_init,
125  .close = ptx_end,
127  .capabilities = CODEC_CAP_DR1,
128  .long_name = NULL_IF_CONFIG_SMALL("V.Flash PTX image"),
129 };
int(* get_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called at the beginning of each frame to get a buffer for it.
Definition: avcodec.h:1726
enum PixelFormat pix_fmt
Pixel format, see PIX_FMT_xxx.
Definition: avcodec.h:1426
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
Audio Video Frame.
Definition: avcodec.h:985
AVCodec ff_ptx_decoder
Definition: ptx.c:119
void(* release_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called to release buffers which were allocated with get_buffer.
Definition: avcodec.h:1737
misc image utilities
struct PTXContext PTXContext
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2000
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:117
int size
Definition: avcodec.h:909
int stride
Definition: mace.c:143
AVCodec.
Definition: avcodec.h:3189
AVFrame picture
Definition: ptx.c:27
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:228
#define av_cold
Definition: attributes.h:71
static av_cold int ptx_init(AVCodecContext *avctx)
Definition: ptx.c:30
static av_cold int ptx_end(AVCodecContext *avctx)
Definition: ptx.c:110
Definition: ptx.c:26
#define PIX_FMT_RGB555
Definition: pixfmt.h:177
const char data[16]
Definition: mxf.c:60
uint8_t * data
Definition: avcodec.h:908
void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
Definition: utils.c:133
static int init(AVCodecParserContext *s)
Definition: h264_parser.c:336
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:719
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:191
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:140
const char * name
Name of the codec implementation.
Definition: avcodec.h:3196
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
Definition: imgutils.c:213
static AVFrame * picture
enum AVPictureType pict_type
Picture type of the frame, see ?_TYPE below.
Definition: avcodec.h:1029
int width
picture width / height.
Definition: avcodec.h:1408
static int ptx_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
Definition: ptx.c:39
external API header
int linesize[AV_NUM_DATA_POINTERS]
Size, in bytes, of the data for each picture/channel plane.
Definition: avcodec.h:1008
void av_log_ask_for_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message asking for a sample.
main external API structure.
Definition: avcodec.h:1329
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:327
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:111
struct AVPicture AVPicture
four components are given, that's all.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: avcodec.h:997
AV_WL32 AV_WL24 AV_RL16
Definition: bytestream.h:89
void * priv_data
Definition: avcodec.h:1531
#define AV_WN16(p, v)
Definition: intreadwrite.h:334
void avcodec_get_frame_defaults(AVFrame *pic)
Set the fields of the given AVFrame to default values.
Definition: utils.c:609