mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/h264_levels, h265_profile_level: Remove ff_h26[45]_get_level
Unused. Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
ba874ad904
commit
455d3a7684
@ -75,18 +75,6 @@ static int h264_get_br_factor(int profile_idc)
|
||||
return 1200;
|
||||
}
|
||||
|
||||
const H264LevelDescriptor *ff_h264_get_level(int level_idc,
|
||||
int constraint_set3_flag)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(h264_levels); i++) {
|
||||
if (h264_levels[i].level_idc == level_idc &&
|
||||
h264_levels[i].constraint_set3_flag == constraint_set3_flag)
|
||||
return &h264_levels[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const H264LevelDescriptor *ff_h264_guess_level(int profile_idc,
|
||||
int64_t bitrate,
|
||||
int framerate,
|
||||
|
@ -36,9 +36,6 @@ typedef struct H264LevelDescriptor {
|
||||
uint8_t max_mvs_per_2mb;
|
||||
} H264LevelDescriptor;
|
||||
|
||||
const H264LevelDescriptor *ff_h264_get_level(int level_idc,
|
||||
int constraint_set3_flag);
|
||||
|
||||
/**
|
||||
* Guess the level of a stream from some parameters.
|
||||
*
|
||||
|
@ -120,18 +120,6 @@ static const H265ProfileDescriptor h265_profiles[] = {
|
||||
};
|
||||
|
||||
|
||||
const H265LevelDescriptor *ff_h265_get_level(int level_idc)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(h265_levels); i++) {
|
||||
if (h265_levels[i].level_idc == level_idc)
|
||||
return &h265_levels[i];
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const H265ProfileDescriptor *ff_h265_get_profile(const H265RawProfileTierLevel *ptl)
|
||||
{
|
||||
int i;
|
||||
|
@ -70,8 +70,6 @@ typedef struct H265ProfileDescriptor {
|
||||
} H265ProfileDescriptor;
|
||||
|
||||
|
||||
const H265LevelDescriptor *ff_h265_get_level(int level_idc);
|
||||
|
||||
const H265ProfileDescriptor *ff_h265_get_profile(const H265RawProfileTierLevel *ptl);
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user