diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-06 13:23:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-06 13:45:08 +0200 |
commit | 55c49afc42abae64e5ab25e04bc3c09b17c5b6d5 (patch) | |
tree | 3e56007e0d3039ee6aa91e0e87b9abc14a49bf94 /libavformat/nut.h | |
parent | 886c3662d308e97316a606732574f0e87b1cbe3a (diff) | |
parent | d3a72becc6371563185a509b94f5daf32ddbb485 (diff) | |
download | ffmpeg-55c49afc42abae64e5ab25e04bc3c09b17c5b6d5.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
yuv4mpeg: return proper error codes.
Give all anonymously typedeffed structs in headers a name
fate: Add parseutils test
parseutils-test: Drop random colors from parsing test
vf_pad/scale: use double precision for aspect ratios.
build: error on variable-length arrays
ppc: swscale: rework yuv2planeX_altivec()
ppc: fmtconvert: kill VLA in float_to_int16_interleave_altivec()
x86: dsputil: kill VLA in gmc_mmx()
libspeexenc: Updated commentary to reflect recent changes
libspeexenc: Add an option for enabling DTX
doc/APIchanges: fill in missing dates and hashes.
lavr: bump major to 1 and declare it stable.
lavr: change the type of the data buffers to uint8_t**.
lavc: deprecate the audio resampling API.
Conflicts:
cmdutils.h
configure
doc/APIchanges
ffplay.c
libavcodec/dwt.h
libavcodec/libspeexenc.c
libavfilter/vf_pad.c
libavfilter/vf_scale.c
libavformat/asf.h
tests/fate/libavutil.mak
tests/ref/fate/parseutils
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/nut.h')
-rw-r--r-- | libavformat/nut.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h index 39743db1b3..53b5ebc4db 100644 --- a/libavformat/nut.h +++ b/libavformat/nut.h @@ -53,14 +53,14 @@ typedef enum{ FLAG_INVALID =8192, ///<if set, frame_code is invalid } Flag; -typedef struct { +typedef struct Syncpoint { uint64_t pos; uint64_t back_ptr; // uint64_t global_key_pts; int64_t ts; } Syncpoint; -typedef struct { +typedef struct FrameCode { uint16_t flags; uint8_t stream_id; uint16_t size_mul; @@ -70,7 +70,7 @@ typedef struct { uint8_t header_idx; } FrameCode; -typedef struct { +typedef struct StreamContext { int last_flags; int skip_until_key_frame; int64_t last_pts; @@ -82,11 +82,11 @@ typedef struct { int64_t *keyframe_pts; } StreamContext; -typedef struct { +typedef struct ChapterContext { AVRational *time_base; } ChapterContext; -typedef struct { +typedef struct NUTContext { AVFormatContext *avf; // int written_packet_size; // int64_t packet_start; @@ -110,7 +110,7 @@ typedef struct { extern const AVCodecTag ff_nut_subtitle_tags[]; extern const AVCodecTag ff_nut_video_tags[]; -typedef struct { +typedef struct Dispositions { char str[9]; int flag; } Dispositions; |