FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
hapqa_extract_bsf.c
Go to the documentation of this file.
1 /*
2  * HAPQA extract bitstream filter
3  * Copyright (c) 2017 Jokyo Images
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  * @file
24  * HAPQA extract bitstream filter
25  * extract one of the two textures of the HAQA
26  */
27 
28 #include "avcodec.h"
29 #include "bsf.h"
30 #include "bytestream.h"
31 #include "hap.h"
32 
33 typedef struct HapqaExtractContext {
34  const AVClass *class;
35  int texture;/* index of the texture to keep (0 for rgb or 1 for alpha) */
37 
38 static int check_texture(HapqaExtractContext *ctx, int section_type) {
39  if (((ctx->texture == 0)&&((section_type & 0x0F) == 0x0F)) || /* HapQ texture and rgb extract */
40  ((ctx->texture == 1)&&((section_type & 0x0F) == 0x01))) /* HapAlphaOnly texture and alpha extract */
41  {
42  return 1; /* the texture is the one to keep */
43  } else {
44  return 0;
45  }
46 }
47 
49 {
51  GetByteContext gbc;
52  int section_size;
53  enum HapSectionType section_type;
54  int start_section_size;
55  int target_packet_size = 0;
56  int ret = 0;
57 
58  ret = ff_bsf_get_packet_ref(bsf, pkt);
59  if (ret < 0)
60  return ret;
61 
62  bytestream2_init(&gbc, pkt->data, pkt->size);
63  ret = ff_hap_parse_section_header(&gbc, &section_size, &section_type);
64  if (ret != 0)
65  goto fail;
66 
67  if ((section_type & 0x0F) != 0x0D) {
68  av_log(bsf, AV_LOG_ERROR, "Invalid section type for HAPQA %#04x.\n", section_type & 0x0F);
69  ret = AVERROR_INVALIDDATA;
70  goto fail;
71  }
72 
73  start_section_size = 4;
74 
75  bytestream2_seek(&gbc, start_section_size, SEEK_SET);/* go to start of the first texture */
76 
77  ret = ff_hap_parse_section_header(&gbc, &section_size, &section_type);
78  if (ret != 0)
79  goto fail;
80 
81  target_packet_size = section_size + 4;
82 
83  if (check_texture(ctx, section_type) == 0) { /* the texture is not the one to keep */
84  start_section_size += 4 + section_size;
85  bytestream2_seek(&gbc, start_section_size, SEEK_SET);/* go to start of the second texture */
86  ret = ff_hap_parse_section_header(&gbc, &section_size, &section_type);
87  if (ret != 0)
88  goto fail;
89 
90  target_packet_size = section_size + 4;
91 
92  if (check_texture(ctx, section_type) == 0){ /* the second texture is not the one to keep */
93  av_log(bsf, AV_LOG_ERROR, "No valid texture found.\n");
94  ret = AVERROR_INVALIDDATA;
95  goto fail;
96  }
97  }
98 
99  pkt->data += start_section_size;
100  pkt->size = target_packet_size;
101 
102 fail:
103  if (ret < 0)
104  av_packet_unref(pkt);
105  return ret;
106 }
107 
108 static const enum AVCodecID codec_ids[] = {
110 };
111 
112 #define OFFSET(x) offsetof(HapqaExtractContext, x)
113 #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_BSF_PARAM)
114 static const AVOption options[] = {
115  { "texture", "texture to keep", OFFSET(texture), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS, "texture" },
116  { "color", "keep HapQ texture", 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, 0, 0, FLAGS, "texture" },
117  { "alpha", "keep HapAlphaOnly texture", 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, 0, 0, FLAGS, "texture" },
118  { NULL },
119 };
120 
121 static const AVClass hapqa_extract_class = {
122  .class_name = "hapqa_extract_bsf",
123  .item_name = av_default_item_name,
124  .option = options,
125  .version = LIBAVUTIL_VERSION_INT,
126 };
127 
129  .name = "hapqa_extract",
130  .filter = hapqa_extract,
131  .priv_data_size = sizeof(HapqaExtractContext),
132  .priv_class = &hapqa_extract_class,
133  .codec_ids = codec_ids,
134 };
#define NULL
Definition: coverity.c:32
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
AVOption.
Definition: opt.h:246
HapSectionType
Definition: hap.h:46
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
The bitstream filter state.
Definition: avcodec.h:5703
int size
Definition: avcodec.h:1446
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:133
static AVPacket pkt
int ff_hap_parse_section_header(GetByteContext *gbc, int *section_size, enum HapSectionType *section_type)
Definition: hap.c:57
static const AVOption options[]
void * priv_data
Opaque filter-specific private data.
Definition: avcodec.h:5724
static int check_texture(HapqaExtractContext *ctx, int section_type)
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
const char * name
Definition: avcodec.h:5753
uint8_t * data
Definition: avcodec.h:1445
static enum AVCodecID codec_ids[]
#define av_log(a,...)
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:215
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
static int hapqa_extract(AVBSFContext *bsf, AVPacket *pkt)
#define fail()
Definition: checkasm.h:117
AVFormatContext * ctx
Definition: movenc.c:48
#define OFFSET(x)
Libavcodec external API header.
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:598
Describe the class of an AVClass context structure.
Definition: log.h:67
static const AVClass hapqa_extract_class
static av_always_inline int bytestream2_seek(GetByteContext *g, int offset, int whence)
Definition: bytestream.h:208
const AVBitStreamFilter ff_hapqa_extract_bsf
This structure stores compressed data.
Definition: avcodec.h:1422
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
Definition: bsf.c:238
#define FLAGS