2 * RAW EVC video demuxer
4 * Copyright (c) 2021 Dawid Kozinski <d.kozinski@samsung.com>
6 * This file is part of FFmpeg.
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.
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.
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
23 #include "libavcodec/evc.h"
24 #include "libavcodec/bsf.h"
26 #include "libavutil/opt.h"
29 #include "avio_internal.h"
35 #define RAW_PACKET_SIZE 1024
37 typedef struct EVCDemuxContext
{
45 #define DEC AV_OPT_FLAG_DECODING_PARAM
46 #define OFFSET(x) offsetof(EVCDemuxContext, x)
47 static const AVOption evc_options
[] = {
48 { "framerate", "", OFFSET(framerate
), AV_OPT_TYPE_VIDEO_RATE
, {.str
= "25"}, 0, INT_MAX
, DEC
},
53 static const AVClass evc_demuxer_class
= {
54 .class_name
= "EVC Annex B demuxer",
55 .item_name
= av_default_item_name
,
56 .option
= evc_options
,
57 .version
= LIBAVUTIL_VERSION_INT
,
60 static int annexb_probe(const AVProbeData
*p
)
64 int got_sps
= 0, got_pps
= 0, got_idr
= 0, got_nonidr
= 0;
65 const unsigned char *bits
= p
->buf
;
66 int bytes_to_read
= p
->buf_size
;
68 while (bytes_to_read
> EVC_NALU_LENGTH_PREFIX_SIZE
) {
70 nalu_size
= evc_read_nal_unit_length(bits
, EVC_NALU_LENGTH_PREFIX_SIZE
);
71 if (nalu_size
== 0) break;
73 bits
+= EVC_NALU_LENGTH_PREFIX_SIZE
;
74 bytes_to_read
-= EVC_NALU_LENGTH_PREFIX_SIZE
;
76 if(bytes_to_read
< nalu_size
) break;
78 nalu_type
= evc_get_nalu_type(bits
, bytes_to_read
);
80 if (nalu_type
== EVC_SPS_NUT
)
82 else if (nalu_type
== EVC_PPS_NUT
)
84 else if (nalu_type
== EVC_IDR_NUT
)
86 else if (nalu_type
== EVC_NOIDR_NUT
)
90 bytes_to_read
-= nalu_size
;
93 if (got_sps
&& got_pps
&& (got_idr
|| got_nonidr
> 3))
94 return AVPROBE_SCORE_EXTENSION
+ 1; // 1 more than .mpg
99 static int evc_read_header(AVFormatContext
*s
)
103 const AVBitStreamFilter
*filter
= av_bsf_get_by_name("evc_frame_merge");
104 EVCDemuxContext
*c
= s
->priv_data
;
107 st
= avformat_new_stream(s
, NULL
);
109 ret
= AVERROR(ENOMEM
);
114 st
->codecpar
->codec_type
= AVMEDIA_TYPE_VIDEO
;
115 st
->codecpar
->codec_id
= AV_CODEC_ID_EVC
;
117 // This causes sending to the parser full frames, not chunks of data
118 // The flag PARSER_FLAG_COMPLETE_FRAMES will be set in demux.c (demux.c: 1316)
119 sti
->need_parsing
= AVSTREAM_PARSE_HEADERS
;
121 st
->avg_frame_rate
= c
->framerate
;
123 // taken from rawvideo demuxers
124 avpriv_set_pts_info(st
, 64, 1, 1200000);
126 ret
= av_bsf_alloc(filter
, &c
->bsf
);
130 ret
= avcodec_parameters_copy(c
->bsf
->par_in
, st
->codecpar
);
134 ret
= av_bsf_init(c
->bsf
);
142 static int evc_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
146 int au_end_found
= 0;
147 EVCDemuxContext
*const c
= s
->priv_data
;
149 while(!au_end_found
) {
150 uint8_t buf
[EVC_NALU_LENGTH_PREFIX_SIZE
];
152 if (avio_feof(s
->pb
))
155 ret
= ffio_ensure_seekback(s
->pb
, EVC_NALU_LENGTH_PREFIX_SIZE
);
159 ret
= avio_read(s
->pb
, buf
, EVC_NALU_LENGTH_PREFIX_SIZE
);
162 if (ret
!= EVC_NALU_LENGTH_PREFIX_SIZE
)
163 return AVERROR_INVALIDDATA
;
165 nalu_size
= evc_read_nal_unit_length(buf
, EVC_NALU_LENGTH_PREFIX_SIZE
);
166 if (!nalu_size
|| nalu_size
> INT_MAX
)
167 return AVERROR_INVALIDDATA
;
169 avio_seek(s
->pb
, -EVC_NALU_LENGTH_PREFIX_SIZE
, SEEK_CUR
);
171 ret
= av_get_packet(s
->pb
, pkt
, nalu_size
+ EVC_NALU_LENGTH_PREFIX_SIZE
);
174 if (ret
!= (nalu_size
+ EVC_NALU_LENGTH_PREFIX_SIZE
))
175 return AVERROR_INVALIDDATA
;
178 ret
= av_bsf_send_packet(c
->bsf
, pkt
);
180 av_log(s
, AV_LOG_ERROR
, "Failed to send packet to "
181 "evc_frame_merge filter\n");
185 ret
= av_bsf_receive_packet(c
->bsf
, pkt
);
186 if (ret
< 0 && ret
!= AVERROR(EAGAIN
) && ret
!= AVERROR_EOF
)
187 av_log(s
, AV_LOG_ERROR
, "evc_frame_merge filter failed to "
188 "send output packet\n");
190 if (ret
!= AVERROR(EAGAIN
))
197 static int evc_read_close(AVFormatContext
*s
)
199 EVCDemuxContext
*const c
= s
->priv_data
;
201 av_bsf_free(&c
->bsf
);
205 const FFInputFormat ff_evc_demuxer
= {
207 .p
.long_name
= NULL_IF_CONFIG_SMALL("EVC Annex B"),
208 .p
.extensions
= "evc",
209 .p
.flags
= AVFMT_GENERIC_INDEX
| AVFMT_NOTIMESTAMPS
,
210 .p
.priv_class
= &evc_demuxer_class
,
211 .read_probe
= annexb_probe
,
212 .read_header
= evc_read_header
, // annexb_read_header
213 .read_packet
= evc_read_packet
, // annexb_read_packet
214 .read_close
= evc_read_close
,
215 .flags_internal
= FF_INFMT_FLAG_INIT_CLEANUP
,
216 .raw_codec_id
= AV_CODEC_ID_EVC
,
217 .priv_data_size
= sizeof(EVCDemuxContext
),