Commit 14e18749 authored by bcoudurier's avatar bcoudurier

quiet gcc about enum value not handled in switch

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6624 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3a6cd9f6
......@@ -405,6 +405,7 @@ static int gxf_write_umf_track_description(ByteIOContext *pb, GXFContext *ctx)
case CODEC_ID_PCM_S16LE: id= 'A'; break;
case CODEC_ID_DVVIDEO: id= sc->track_type == 6 ? 'E' : 'D'; break;
case CODEC_ID_MJPEG: id= 'V'; break;
default: break;
}
sc->media_info= id << 8;
/* FIXME first 10 audio tracks are 0 to 9 next 22 are A to V */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment