mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
ffdec: add some comments
This commit is contained in:
parent
76d9685202
commit
b41aab3690
1 changed files with 4 additions and 0 deletions
|
@ -44,6 +44,10 @@ typedef struct _GstFFMpegDec GstFFMpegDec;
|
|||
|
||||
#define MAX_TS_MASK 0xff
|
||||
|
||||
/* for each incomming buffer we keep all timing info in a structure like this.
|
||||
* We keep a circular array of these structures around to store the timing info.
|
||||
* The index in the array is what we pass as opaque data (to pictures) and
|
||||
* pts (to parsers) so that ffmpeg can remember them for us. */
|
||||
typedef struct
|
||||
{
|
||||
gint idx;
|
||||
|
|
Loading…
Reference in a new issue