diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-09-23 17:19:49 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-09-23 17:19:49 +0000 |
commit | 5ed8fafcb6299dcf788438356a0a311344001db3 (patch) | |
tree | 3f53c9af8c23d0ce27325c804ec9801e96995d06 /libav/avformat.h | |
parent | f674bf7105377ba498eb6c4489fa3557b64d663a (diff) | |
download | ffmpeg-5ed8fafcb6299dcf788438356a0a311344001db3.tar.gz |
added pcm formats
Originally committed as revision 142 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/avformat.h')
-rw-r--r-- | libav/avformat.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libav/avformat.h b/libav/avformat.h index 298a5b513a..48a8f3f590 100644 --- a/libav/avformat.h +++ b/libav/avformat.h @@ -140,7 +140,14 @@ extern AVFormat ac3_format; extern AVFormat h263_format; extern AVFormat mpeg1video_format; extern AVFormat mjpeg_format; -extern AVFormat pcm_format; +extern AVFormat pcm_s16le_format; +extern AVFormat pcm_s16be_format; +extern AVFormat pcm_u16le_format; +extern AVFormat pcm_u16be_format; +extern AVFormat pcm_s8_format; +extern AVFormat pcm_u8_format; +extern AVFormat pcm_mulaw_format; +extern AVFormat pcm_alaw_format; extern AVFormat rawvideo_format; /* ffm.c */ |