Mercurial > libavcodec.hg
annotate ptx.c @ 12435:fe78a4548d12 libavcodec
Put ff_ prefix on non-static {put_signed,put,add}_pixels_clamped_mmx()
functions.
author | rbultje |
---|---|
date | Mon, 30 Aug 2010 16:22:27 +0000 |
parents | 914f484bb476 |
children | ffb3668ff7af |
rev | line source |
---|---|
4884 | 1 /* |
2 * V.Flash PTX (.ptx) image decoder | |
3 * Copyright (c) 2007 Ivo van Poorten | |
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 | |
8573
2acf0ae7b041
Fix build: Add intreadwrite.h and bswap.h #includes where necessary.
diego
parents:
7040
diff
changeset
|
22 #include "libavutil/intreadwrite.h" |
12372
914f484bb476
Remove use of the deprecated function avcodec_check_dimensions(), use
stefano
parents:
11560
diff
changeset
|
23 #include "libavcore/imgutils.h" |
4884 | 24 #include "avcodec.h" |
25 | |
26 typedef struct PTXContext { | |
27 AVFrame picture; | |
28 } PTXContext; | |
29 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6246
diff
changeset
|
30 static av_cold int ptx_init(AVCodecContext *avctx) { |
4884 | 31 PTXContext *s = avctx->priv_data; |
32 | |
6070 | 33 avcodec_get_frame_defaults(&s->picture); |
34 avctx->coded_frame= &s->picture; | |
4884 | 35 |
36 return 0; | |
37 } | |
38 | |
39 static int ptx_decode_frame(AVCodecContext *avctx, void *data, int *data_size, | |
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
8573
diff
changeset
|
40 AVPacket *avpkt) { |
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
8573
diff
changeset
|
41 const uint8_t *buf = avpkt->data; |
4884 | 42 PTXContext * const s = avctx->priv_data; |
43 AVFrame *picture = data; | |
6075 | 44 AVFrame * const p = &s->picture; |
4884 | 45 unsigned int offset, w, h, y, stride, bytes_per_pixel; |
46 uint8_t *ptr; | |
47 | |
48 offset = AV_RL16(buf); | |
49 w = AV_RL16(buf+8); | |
50 h = AV_RL16(buf+10); | |
51 bytes_per_pixel = AV_RL16(buf+12) >> 3; | |
52 | |
53 if (bytes_per_pixel != 2) { | |
54 av_log(avctx, AV_LOG_ERROR, "image format is not rgb15, please report on ffmpeg-users mailing list\n"); | |
55 return -1; | |
56 } | |
57 | |
58 avctx->pix_fmt = PIX_FMT_RGB555; | |
59 | |
60 if (offset != 0x2c) | |
61 av_log(avctx, AV_LOG_WARNING, "offset != 0x2c, untested due to lack of sample files\n"); | |
62 | |
63 buf += offset; | |
64 | |
65 if (p->data[0]) | |
66 avctx->release_buffer(avctx, p); | |
67 | |
12372
914f484bb476
Remove use of the deprecated function avcodec_check_dimensions(), use
stefano
parents:
11560
diff
changeset
|
68 if (av_check_image_size(w, h, 0, avctx)) |
4884 | 69 return -1; |
70 if (w != avctx->width || h != avctx->height) | |
71 avcodec_set_dimensions(avctx, w, h); | |
72 if (avctx->get_buffer(avctx, p) < 0) { | |
73 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); | |
74 return -1; | |
75 } | |
76 | |
77 p->pict_type = FF_I_TYPE; | |
78 | |
79 ptr = p->data[0]; | |
80 stride = p->linesize[0]; | |
81 | |
82 for (y=0; y<h; y++) { | |
9985 | 83 #if HAVE_BIGENDIAN |
4884 | 84 unsigned int x; |
85 for (x=0; x<w*bytes_per_pixel; x+=bytes_per_pixel) | |
5520
c16a59ef6a86
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
romansh
parents:
5215
diff
changeset
|
86 AV_WN16(ptr+x, AV_RL16(buf+x)); |
4884 | 87 #else |
88 memcpy(ptr, buf, w*bytes_per_pixel); | |
89 #endif | |
90 ptr += stride; | |
91 buf += w*bytes_per_pixel; | |
92 } | |
93 | |
6070 | 94 *picture = s->picture; |
4884 | 95 *data_size = sizeof(AVPicture); |
96 | |
97 return offset + w*h*bytes_per_pixel; | |
98 } | |
99 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6246
diff
changeset
|
100 static av_cold int ptx_end(AVCodecContext *avctx) { |
4884 | 101 PTXContext *s = avctx->priv_data; |
102 | |
103 if(s->picture.data[0]) | |
104 avctx->release_buffer(avctx, &s->picture); | |
105 | |
106 return 0; | |
107 } | |
108 | |
109 AVCodec ptx_decoder = { | |
110 "ptx", | |
11560
8a4984c5cacc
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
9985
diff
changeset
|
111 AVMEDIA_TYPE_VIDEO, |
4884 | 112 CODEC_ID_PTX, |
113 sizeof(PTXContext), | |
114 ptx_init, | |
115 NULL, | |
116 ptx_end, | |
117 ptx_decode_frame, | |
9805
7d851240d479
ptx image decoder uses get_buffer, set CODEC_CAP_DR1
bcoudurier
parents:
9385
diff
changeset
|
118 CODEC_CAP_DR1, |
6722 | 119 NULL, |
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6722
diff
changeset
|
120 .long_name = NULL_IF_CONFIG_SMALL("V.Flash PTX image"), |
4884 | 121 }; |