diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-10-11 09:16:05 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-10-11 09:16:05 +0000 |
commit | a48b7a6bfa2d639e1fb3e8d82fe988decddc0aa3 (patch) | |
tree | a3a244cf81ed1e15c0891c7206cc57780168b0be /libav/avformat.h | |
parent | 92391c6c8976ceb768e66ef6e12300906298933a (diff) | |
download | ffmpeg-a48b7a6bfa2d639e1fb3e8d82fe988decddc0aa3.tar.gz |
added stream copy capability
Originally committed as revision 1024 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/avformat.h')
-rw-r--r-- | libav/avformat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libav/avformat.h b/libav/avformat.h index 943f63bc83..7ce160ffed 100644 --- a/libav/avformat.h +++ b/libav/avformat.h @@ -129,6 +129,8 @@ typedef struct AVStream { int codec_info_state; int codec_info_nb_repeat_frames; int codec_info_nb_real_frames; + /* ffmpeg.c private use */ + int stream_copy; /* if TRUE, just copy stream */ } AVStream; #define MAX_STREAMS 20 |