mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
hevc: export stream parameters from extradata
This allows the callers to have a hint of the probable stream parameters without actually decoding anything.
This commit is contained in:
parent
1ae7afd256
commit
7693ba0a0e
@ -3138,7 +3138,7 @@ static int hevc_decode_extradata(HEVCContext *s)
|
||||
{
|
||||
AVCodecContext *avctx = s->avctx;
|
||||
GetByteContext gb;
|
||||
int ret;
|
||||
int ret, i;
|
||||
|
||||
bytestream2_init(&gb, avctx->extradata, avctx->extradata_size);
|
||||
|
||||
@ -3195,6 +3195,16 @@ static int hevc_decode_extradata(HEVCContext *s)
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* export stream parameters from the first SPS */
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(s->sps_list); i++) {
|
||||
if (s->sps_list[i]) {
|
||||
const HEVCSPS *sps = (const HEVCSPS*)s->sps_list[i]->data;
|
||||
export_stream_params(s->avctx, s, sps);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user