Browse Source

Merge commit 'b8b5d8274471129f122858bc74ad09284dae6ab7'

* commit 'b8b5d8274471129f122858bc74ad09284dae6ab7':
  lavu: extend size of the AVPixFmtDescriptor.flags field

Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
tags/n3.0
Hendrik Leppkes 10 years ago
parent
commit
c734b34b04
2 changed files with 8 additions and 1 deletions
  1. +3
    -0
      doc/APIchanges
  2. +5
    -1
      libavutil/pixdesc.h

+ 3
- 0
doc/APIchanges View File

@@ -15,6 +15,9 @@ libavutil: 2015-08-28


API changes, most recent first: API changes, most recent first:


2015-xx-xx - lavu 55.0.100 / lavu 55.0.0
xxxxxxx - Change type of AVPixFmtDescriptor.flags from uint8_t to uint64_t.

-------- 8< --------- FFmpeg 2.8 was cut here -------- 8< --------- -------- 8< --------- FFmpeg 2.8 was cut here -------- 8< ---------


2015-08-27 - 1dd854e1 - lavc 56.58.100 - vaapi.h 2015-08-27 - 1dd854e1 - lavc 56.58.100 - vaapi.h


+ 5
- 1
libavutil/pixdesc.h View File

@@ -87,7 +87,11 @@ typedef struct AVPixFmtDescriptor {
* This value only refers to the chroma components. * This value only refers to the chroma components.
*/ */
uint8_t log2_chroma_h; uint8_t log2_chroma_h;
uint8_t flags;

/**
* Combination of AV_PIX_FMT_FLAG_... flags.
*/
uint64_t flags;


/** /**
* Parameters that describe how pixels are packed. * Parameters that describe how pixels are packed.


Loading…
Cancel
Save