/src/ffmpeg/libavcodec/pdvdec.c
Line | Count | Source |
1 | | /* |
2 | | * PDV video format |
3 | | * |
4 | | * Copyright (c) 2023 Paul B Mahol |
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 | | #include "avcodec.h" |
24 | | #include "codec_internal.h" |
25 | | #include "decode.h" |
26 | | #include "zlib_wrapper.h" |
27 | | |
28 | | #include "libavutil/attributes.h" |
29 | | |
30 | | #include <zlib.h> |
31 | | |
32 | | typedef struct PDVContext { |
33 | | AVFrame *previous_frame; |
34 | | FFZStream zstream; |
35 | | } PDVContext; |
36 | | |
37 | | static av_cold int decode_init(AVCodecContext *avctx) |
38 | 1.39k | { |
39 | 1.39k | PDVContext *s = avctx->priv_data; |
40 | | |
41 | 1.39k | avctx->pix_fmt = AV_PIX_FMT_MONOBLACK; |
42 | | |
43 | 1.39k | s->previous_frame = av_frame_alloc(); |
44 | 1.39k | if (!s->previous_frame) |
45 | 0 | return AVERROR(ENOMEM); |
46 | | |
47 | 1.39k | return ff_inflate_init(&s->zstream, avctx); |
48 | 1.39k | } |
49 | | |
50 | | static av_cold int decode_end(AVCodecContext *avctx) |
51 | 1.39k | { |
52 | 1.39k | PDVContext *s = avctx->priv_data; |
53 | | |
54 | 1.39k | av_frame_free(&s->previous_frame); |
55 | 1.39k | ff_inflate_end(&s->zstream); |
56 | | |
57 | 1.39k | return 0; |
58 | 1.39k | } |
59 | | |
60 | | static int decode_frame(AVCodecContext *avctx, AVFrame *frame, |
61 | | int *got_frame, AVPacket *avpkt) |
62 | 268k | { |
63 | 268k | PDVContext *s = avctx->priv_data; |
64 | 268k | AVFrame *prev_frame = s->previous_frame; |
65 | 268k | z_stream *const zstream = &s->zstream.zstream; |
66 | 268k | uint8_t *dst, *prev = prev_frame->data[0]; |
67 | 268k | int ret, zret; |
68 | | |
69 | 268k | if (avctx->skip_frame >= AVDISCARD_ALL || |
70 | 151k | (avctx->skip_frame >= AVDISCARD_NONINTRA && |
71 | 8.63k | !(avpkt->flags & AV_PKT_FLAG_KEY))) |
72 | 122k | return avpkt->size; |
73 | | |
74 | 145k | zret = inflateReset(zstream); |
75 | 145k | if (zret != Z_OK) { |
76 | 0 | av_log(avctx, AV_LOG_ERROR, "Could not reset inflate: %d.\n", zret); |
77 | 0 | return AVERROR_INVALIDDATA; |
78 | 0 | } |
79 | | |
80 | 145k | if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0) |
81 | 11.7k | return ret; |
82 | | |
83 | 133k | zstream->next_in = avpkt->data; |
84 | 133k | zstream->avail_in = avpkt->size; |
85 | | |
86 | 133k | dst = frame->data[0]; |
87 | 22.5M | for (int i = 0; i < avctx->height; i++) { |
88 | 22.5M | zstream->next_out = dst; |
89 | 22.5M | zstream->avail_out = (avctx->width + 7) >> 3; |
90 | | |
91 | 22.5M | zret = inflate(zstream, Z_SYNC_FLUSH); |
92 | 22.5M | if (zret != Z_OK && zret != Z_STREAM_END) { |
93 | 102k | av_log(avctx, AV_LOG_ERROR, |
94 | 102k | "Inflate failed with return code: %d.\n", zret); |
95 | 102k | return AVERROR_INVALIDDATA; |
96 | 102k | } |
97 | | |
98 | 22.4M | if (prev && !(avpkt->flags & AV_PKT_FLAG_KEY)) { |
99 | 3.35G | for (int j = 0; j < (avctx->width + 7) >> 3; j++) |
100 | 3.34G | dst[j] ^= prev[j]; |
101 | 5.06M | prev += prev_frame->linesize[0]; |
102 | 5.06M | } |
103 | | |
104 | 22.4M | dst += frame->linesize[0]; |
105 | 22.4M | } |
106 | | |
107 | 31.9k | if ((ret = av_frame_replace(s->previous_frame, frame)) < 0) |
108 | 0 | return ret; |
109 | | |
110 | 31.9k | if (avpkt->flags & AV_PKT_FLAG_KEY) { |
111 | 8.72k | frame->flags |= AV_FRAME_FLAG_KEY; |
112 | 8.72k | frame->pict_type = AV_PICTURE_TYPE_I; |
113 | 23.1k | } else { |
114 | 23.1k | frame->pict_type = AV_PICTURE_TYPE_P; |
115 | 23.1k | } |
116 | | |
117 | 31.9k | *got_frame = 1; |
118 | | |
119 | 31.9k | return avpkt->size; |
120 | 31.9k | } |
121 | | |
122 | | static av_cold void decode_flush(AVCodecContext *avctx) |
123 | 118k | { |
124 | 118k | PDVContext *s = avctx->priv_data; |
125 | | |
126 | 118k | av_frame_unref(s->previous_frame); |
127 | 118k | } |
128 | | |
129 | | const FFCodec ff_pdv_decoder = { |
130 | | .p.name = "pdv", |
131 | | CODEC_LONG_NAME("PDV (PlayDate Video)"), |
132 | | .priv_data_size = sizeof(PDVContext), |
133 | | .p.type = AVMEDIA_TYPE_VIDEO, |
134 | | .p.id = AV_CODEC_ID_PDV, |
135 | | .p.capabilities = AV_CODEC_CAP_DR1, |
136 | | .caps_internal = FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM | |
137 | | FF_CODEC_CAP_INIT_CLEANUP, |
138 | | .init = decode_init, |
139 | | .close = decode_end, |
140 | | .flush = decode_flush, |
141 | | FF_CODEC_DECODE_CB(decode_frame), |
142 | | }; |