1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-02 09:19:58 +02:00

hevc: remove disable_au option(cherry picked from commit e90b3f6753d645fec076e951a0597a5dc2d2fe31)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Mickaël Raulet 2013-10-20 09:25:59 +02:00 committed by Michael Niedermayer
parent 23c0698499
commit 1912842045
2 changed files with 25 additions and 29 deletions

View File

@ -2107,7 +2107,6 @@ static int decode_nal_units(HEVCContext *s, const uint8_t *buf, int length)
HEVCNAL *nal; HEVCNAL *nal;
int extract_length = 0; int extract_length = 0;
if (s->disable_au == 0) {
if (s->is_nalff) { if (s->is_nalff) {
int i; int i;
for (i = 0; i < s->nal_length_size; i++) for (i = 0; i < s->nal_length_size; i++)
@ -2134,8 +2133,8 @@ static int decode_nal_units(HEVCContext *s, const uint8_t *buf, int length)
buf += 3; buf += 3;
length -= 3; length -= 3;
} }
}
if (!s->is_nalff || s->disable_au) if (!s->is_nalff)
extract_length = length; extract_length = length;
if (s->nals_allocated < s->nb_nals + 1) { if (s->nals_allocated < s->nb_nals + 1) {
@ -2578,8 +2577,6 @@ static void hevc_decode_flush(AVCodecContext *avctx)
#define OFFSET(x) offsetof(HEVCContext, x) #define OFFSET(x) offsetof(HEVCContext, x)
#define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) #define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
static const AVOption options[] = { static const AVOption options[] = {
{ "disable-au", "disable read frame AU by AU", OFFSET(disable_au),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, PAR },
{ "strict-displaywin", "stricly apply default display window size", OFFSET(strict_def_disp_win), { "strict-displaywin", "stricly apply default display window size", OFFSET(strict_def_disp_win),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, PAR }, AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, PAR },
{ NULL }, { NULL },

View File

@ -756,7 +756,6 @@ typedef struct HEVCContext {
HEVCLocalContext HEVClc; HEVCLocalContext HEVClc;
int disable_au;
int width; int width;
int height; int height;