hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
 * Copyright 2015 Rockchip Electronics Co. LTD
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 
#define  MODULE_TAG "mpp_dec"
 
#include <string.h>
 
#include "mpp_mem.h"
#include "mpp_log.h"
#include "mpp_common.h"
 
#include "mpp_parser.h"
 
#include "h263d_api.h"
#include "h264d_api.h"
#include "h265d_api.h"
#include "vp9d_api.h"
#include "avsd_api.h"
#include "m2vd_api.h"
#include "mpg4d_api.h"
#include "vp8d_api.h"
#include "jpegd_api.h"
#include "av1d_api.h"
 
// for test and demo
#include "dummy_dec_api.h"
 
/*
 * all decoder static register here
 */
static const ParserApi *parsers[] = {
#if HAVE_AVSD
    &api_avsd_parser,
#endif
#if HAVE_H263D
    &api_h263d_parser,
#endif
#if HAVE_H264D
    &api_h264d_parser,
#endif
#if HAVE_H265D
    &api_h265d_parser,
#endif
#if HAVE_MPEG2D
    &api_m2vd_parser,
#endif
#if HAVE_MPEG4D
    &api_mpg4d_parser,
#endif
#if HAVE_VP8D
    &api_vp8d_parser,
#endif
#if HAVE_VP9D
    &api_vp9d_parser,
#endif
#if HAVE_JPEGD
    &api_jpegd_parser,
#endif
    &dummy_dec_parser,
#if HAVE_AV1D
    &api_av1d_parser,
#endif
};
 
typedef struct ParserImpl_t {
    const ParserApi     *api;
    void                *ctx;
} ParserImpl;
 
MPP_RET mpp_parser_init(Parser *prs, ParserCfg *cfg)
{
    if (NULL == prs || NULL == cfg) {
        mpp_err_f("found NULL input parser %p config %p\n", prs, cfg);
        return MPP_ERR_NULL_PTR;
    }
 
    *prs = NULL;
 
    RK_U32 i;
    for (i = 0; i < MPP_ARRAY_ELEMS(parsers); i++) {
        const ParserApi *api = parsers[i];
        if (cfg->coding == api->coding) {
            ParserImpl *p = mpp_calloc(ParserImpl, 1);
            void *ctx = mpp_calloc_size(void, api->ctx_size);
            if (NULL == ctx || NULL == p) {
                mpp_err_f("failed to alloc parser context\n");
                mpp_free(p);
                mpp_free(ctx);
                return MPP_ERR_MALLOC;
            }
 
            MPP_RET ret = api->init(ctx, cfg);
            if (MPP_OK != ret) {
                mpp_err_f("failed to init parser\n");
                mpp_free(p);
                mpp_free(ctx);
                return ret;
            }
 
            p->api  = api;
            p->ctx  = ctx;
            *prs = p;
            return MPP_OK;
        }
    }
    return MPP_NOK;
}
 
MPP_RET mpp_parser_deinit(Parser prs)
{
    if (NULL == prs) {
        mpp_err_f("found NULL input\n");
        return MPP_ERR_NULL_PTR;
    }
 
    ParserImpl *p = (ParserImpl *)prs;
    if (p->api->deinit)
        p->api->deinit(p->ctx);
 
    mpp_free(p->ctx);
    mpp_free(p);
    return MPP_OK;
}
 
MPP_RET mpp_parser_prepare(Parser prs, MppPacket pkt, HalDecTask *task)
{
    if (NULL == prs || NULL == pkt) {
        mpp_err_f("found NULL input\n");
        return MPP_ERR_NULL_PTR;
    }
 
    ParserImpl *p = (ParserImpl *)prs;
    if (!p->api->prepare)
        return MPP_OK;
 
    return p->api->prepare(p->ctx, pkt, task);
}
 
MPP_RET mpp_parser_parse(Parser prs, HalDecTask *task)
{
    if (NULL == prs || NULL == task) {
        mpp_err_f("found NULL input\n");
        return MPP_ERR_NULL_PTR;
    }
 
    ParserImpl *p = (ParserImpl *)prs;
    if (!p->api->parse)
        return MPP_OK;
 
    return p->api->parse(p->ctx, task);
}
 
MPP_RET mpp_parser_callback(void *prs, void *err_info)
{
    if (NULL == prs) {
        mpp_err_f("found NULL input\n");
        return MPP_ERR_NULL_PTR;
    }
    ParserImpl *p = (ParserImpl *)prs;
    if (!p->api->callback)
        return MPP_OK;
    return p->api->callback(p->ctx, err_info);
}
 
MPP_RET mpp_parser_reset(Parser prs)
{
    if (NULL == prs) {
        mpp_err_f("found NULL input\n");
        return MPP_ERR_NULL_PTR;
    }
 
    ParserImpl *p = (ParserImpl *)prs;
    if (!p->api->reset)
        return MPP_OK;
 
    return p->api->reset(p->ctx);
}
 
MPP_RET mpp_parser_flush(Parser prs)
{
    if (NULL == prs) {
        mpp_err_f("found NULL input\n");
        return MPP_ERR_NULL_PTR;
    }
 
    ParserImpl *p = (ParserImpl *)prs;
    if (!p->api->flush)
        return MPP_OK;
 
    return p->api->flush(p->ctx);
}
 
MPP_RET mpp_parser_control(Parser prs, MpiCmd cmd, void *para)
{
    if (NULL == prs) {
        mpp_err_f("found NULL input\n");
        return MPP_ERR_NULL_PTR;
    }
 
    ParserImpl *p = (ParserImpl *)prs;
    if (!p->api->control)
        return MPP_OK;
 
    return p->api->control(p->ctx, cmd, para);
}