Show which bitstreamfilters were compiled in, similar to the protocols etc
enumerations. Originally committed as revision 11203 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e11910120a
commit
8540e8c3ec
6
ffmpeg.c
6
ffmpeg.c
@ -3322,6 +3322,7 @@ static void opt_show_formats(void)
|
|||||||
AVOutputFormat *ofmt;
|
AVOutputFormat *ofmt;
|
||||||
URLProtocol *up;
|
URLProtocol *up;
|
||||||
AVCodec *p, *p2;
|
AVCodec *p, *p2;
|
||||||
|
AVBitStreamFilter *bsf;
|
||||||
const char *last_name;
|
const char *last_name;
|
||||||
|
|
||||||
printf("File formats:\n");
|
printf("File formats:\n");
|
||||||
@ -3417,6 +3418,11 @@ static void opt_show_formats(void)
|
|||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
|
||||||
|
printf("Bitstream filters:\n");
|
||||||
|
for(bsf = first_bitstream_filter; bsf != NULL; bsf = bsf->next)
|
||||||
|
printf(" %s", bsf->name);
|
||||||
|
printf("\n");
|
||||||
|
|
||||||
printf("Supported file protocols:\n");
|
printf("Supported file protocols:\n");
|
||||||
for(up = first_protocol; up != NULL; up = up->next)
|
for(up = first_protocol; up != NULL; up = up->next)
|
||||||
printf(" %s:", up->name);
|
printf(" %s:", up->name);
|
||||||
|
@ -2827,6 +2827,7 @@ int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc,
|
|||||||
const uint8_t *buf, int buf_size, int keyframe);
|
const uint8_t *buf, int buf_size, int keyframe);
|
||||||
void av_bitstream_filter_close(AVBitStreamFilterContext *bsf);
|
void av_bitstream_filter_close(AVBitStreamFilterContext *bsf);
|
||||||
|
|
||||||
|
extern AVBitStreamFilter *first_bitstream_filter;
|
||||||
|
|
||||||
/* memory */
|
/* memory */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user