diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-05-24 08:44:10 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-05-27 06:52:52 +0200 |
commit | 4779f59378d54f30644ef79ce3a5c402546f3cb9 (patch) | |
tree | 29bbe51ffc7ad0916a27aa507f5c291800e65ba2 /libavformat/avformat.h | |
parent | 89d1b7f40671e0d455fe6b6670bf6f2bcf2eea2e (diff) | |
download | ffmpeg-4779f59378d54f30644ef79ce3a5c402546f3cb9.tar.gz |
rtspdec: add initial_pause private option.
Deprecate corresponding AVFormatParameters field.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 847e408641..2ea940c186 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -241,9 +241,9 @@ typedef struct AVFormatParameters { attribute_deprecated unsigned int mpeg2ts_raw:1; /**< deprecated, use mpegtsraw demuxer */ /**< deprecated, use mpegtsraw demuxer-specific options instead */ attribute_deprecated unsigned int mpeg2ts_compute_pcr:1; + attribute_deprecated unsigned int initial_pause:1; /**< Do not begin to play the stream + immediately (RTSP only). */ #endif - unsigned int initial_pause:1; /**< Do not begin to play the stream - immediately (RTSP only). */ unsigned int prealloced_context:1; } AVFormatParameters; |