Fixes a compile error with recent versions of libavcodec
avplay.c:60:36: error: parameter 1 (‘id’) has incomplete type
static int map_vcodec(enum CodecID id)
^~
avplay.c: In function ‘map_vcodec’:
avplay.c:64:13: error: ‘CODEC_ID_MPEG2VIDEO’ undeclared (first use in this function)
case CODEC_ID_MPEG2VIDEO:
libavcoded versions after 55 now prefix codecIDs with the letters AV
Fixes a compile error with recent versions of libavcodec
avplay.c:60:36: error: parameter 1 (‘id’) has incomplete type static int map_vcodec(enum CodecID id) ^~ avplay.c: In function ‘map_vcodec’: avplay.c:64:13: error: ‘CODEC_ID_MPEG2VIDEO’ undeclared (first use in this function) case CODEC_ID_MPEG2VIDEO:
libavcoded versions after 55 now prefix codecIDs with the letters AV