Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
avutil/frame: Move new field to the end of AVFrame
This is a similar ABI fix to 1eb43af
  • Loading branch information
michaelni committed Jun 30, 2016
1 parent 972e898 commit 7d6e0b9
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions libavutil/frame.h
Expand Up @@ -427,12 +427,6 @@ typedef struct AVFrame {

enum AVChromaLocation chroma_location;

/**
* For hwaccel-format frames, this should be a reference to the
* AVHWFramesContext describing the frame.
*/
AVBufferRef *hw_frames_ctx;

/**
* frame timestamp estimated using various heuristics, in stream time base
* Code outside libavutil should access this field using:
Expand Down Expand Up @@ -524,6 +518,11 @@ typedef struct AVFrame {
*/
AVBufferRef *qp_table_buf;
#endif
/**
* For hwaccel-format frames, this should be a reference to the
* AVHWFramesContext describing the frame.
*/
AVBufferRef *hw_frames_ctx;
} AVFrame;

/**
Expand Down

0 comments on commit 7d6e0b9

Please sign in to comment.