Commit cd3d7b0f authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avformat/rawdec: Make ff_raw_data_read_header() static

Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent 49916daf
......@@ -102,7 +102,7 @@ int ff_raw_subtitle_read_header(AVFormatContext *s)
return 0;
}
int ff_raw_data_read_header(AVFormatContext *s)
static int raw_data_read_header(AVFormatContext *s)
{
AVStream *st = avformat_new_stream(s, NULL);
if (!st)
......@@ -148,7 +148,7 @@ const AVClass ff_raw_demuxer_class = {
const AVInputFormat ff_data_demuxer = {
.name = "data",
.long_name = NULL_IF_CONFIG_SMALL("raw data"),
.read_header = ff_raw_data_read_header,
.read_header = raw_data_read_header,
.read_packet = ff_raw_read_partial_packet,
.raw_codec_id = AV_CODEC_ID_NONE,
.flags = AVFMT_NOTIMESTAMPS,
......
......@@ -49,8 +49,6 @@ int ff_raw_video_read_header(AVFormatContext *s);
int ff_raw_subtitle_read_header(AVFormatContext *s);
int ff_raw_data_read_header(AVFormatContext *s);
#define FF_DEF_RAWVIDEO_DEMUXER2(shortname, longname, probe, ext, id, flag)\
const AVInputFormat ff_ ## shortname ## _demuxer = {\
.name = #shortname,\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment