comparison avformat.h @ 2832:8ac5fe1c5549 libavformat

Allow overriding codec_ids.
author michael
date Wed, 19 Dec 2007 10:56:17 +0000
parents 64cf0a2303ac
children 578a0c783eae
comparison
equal deleted inserted replaced
2831:e89500ae1608 2832:8ac5fe1c5549
443 const uint8_t *key; 443 const uint8_t *key;
444 int keylen; 444 int keylen;
445 445
446 unsigned int nb_programs; 446 unsigned int nb_programs;
447 AVProgram **programs; 447 AVProgram **programs;
448
449 /**
450 * Forced video codec_id.
451 * demuxing: set by user
452 */
453 enum CodecID video_codec_id;
454 /**
455 * Forced audio codec_id.
456 * demuxing: set by user
457 */
458 enum CodecID audio_codec_id;
459 /**
460 * Forced subtitle codec_id.
461 * demuxing: set by user
462 */
463 enum CodecID subtitle_codec_id;
448 } AVFormatContext; 464 } AVFormatContext;
449 465
450 typedef struct AVPacketList { 466 typedef struct AVPacketList {
451 AVPacket pkt; 467 AVPacket pkt;
452 struct AVPacketList *next; 468 struct AVPacketList *next;