diff options
author | Mickaƫl Raulet <mraulet@insa-rennes.fr> | 2013-10-30 12:28:19 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-31 10:00:22 +0100 |
commit | 7c8b65f688ea75496e278b7c042f2eda746f3eac (patch) | |
tree | ef99499ade9ade6e460b865301944648d6b725d5 /libavcodec/hevc_refs.c | |
parent | 6c4b87d3d6ae08a6da16b4616626b4d2a726afbf (diff) | |
download | ffmpeg-7c8b65f688ea75496e278b7c042f2eda746f3eac.tar.gz |
hevc: add partial support for interlaced(cherry picked from commit 44b592ae6d323445c076ef3ec966ebf9daa8bccf)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc_refs.c')
-rw-r--r-- | libavcodec/hevc_refs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hevc_refs.c b/libavcodec/hevc_refs.c index 6bdd37edda..bf3d953d1f 100644 --- a/libavcodec/hevc_refs.c +++ b/libavcodec/hevc_refs.c @@ -106,6 +106,8 @@ static HEVCFrame *alloc_frame(HEVCContext *s) for (j = 0; j < frame->ctb_count; j++) frame->rpl_tab[j] = (RefPicListTab*)frame->rpl_buf->data; + frame->frame->top_field_first = s->picture_struct == AV_PICTURE_STRUCTURE_TOP_FIELD; + frame->frame->interlaced_frame = (s->picture_struct == AV_PICTURE_STRUCTURE_TOP_FIELD) || (s->picture_struct == AV_PICTURE_STRUCTURE_BOTTOM_FIELD); return frame; fail: ff_hevc_unref_frame(s, frame, ~0); |