Browse Source

simplify code by using the AV_NE() macro

Originally committed as revision 24971 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Aurelien Jacobs 15 years ago
parent
commit
85a2aada90
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      libavformat/raw.c

+ 1
- 5
libavformat/raw.c View File

@@ -1114,11 +1114,7 @@ AVOutputFormat null_muxer = {
NULL,
NULL,
0,
#if HAVE_BIGENDIAN
CODEC_ID_PCM_S16BE,
#else
CODEC_ID_PCM_S16LE,
#endif
AV_NE(CODEC_ID_PCM_S16BE, CODEC_ID_PCM_S16LE),
CODEC_ID_RAWVIDEO,
NULL,
null_write_packet,


Loading…
Cancel
Save