diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-03-18 20:10:09 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-03-18 20:10:09 +0000 |
commit | 1e896640c401cff430c6b11e203b23d6c0b2c635 (patch) | |
tree | 8a8c6b6a4c03eb9702a3eb1dc91299f4fd4f4bd3 /libavcodec/pixdesc.h | |
parent | 9a034dde8bee77f71dd8b80f58a0d1c452bcc15d (diff) | |
download | ffmpeg-1e896640c401cff430c6b11e203b23d6c0b2c635.tar.gz |
Implement a name field for AVPixFmtDescriptor.
Originally committed as revision 18035 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pixdesc.h')
-rw-r--r-- | libavcodec/pixdesc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/pixdesc.h b/libavcodec/pixdesc.h index 95ac9f66a0..edb962fbfe 100644 --- a/libavcodec/pixdesc.h +++ b/libavcodec/pixdesc.h @@ -41,6 +41,7 @@ typedef struct AVComponentDescriptor{ * are stored not what these values represent. */ typedef struct AVPixFmtDescriptor{ + const char *name; uint8_t nb_channels; ///< The number of components each pixel has, (1-4) /** |