Skip to content

Commit

Permalink
lavf: Use the prefixed name for pixel format enum
Browse files Browse the repository at this point in the history
  • Loading branch information
kodawah authored and Gramner committed Oct 11, 2015
1 parent 63555e6 commit a0cd7d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x264.c
Expand Up @@ -442,7 +442,7 @@ static void print_csp_names( int longhelp )
printf( " - valid csps for `lavf' demuxer:\n" );
printf( INDENT );
size_t line_len = strlen( INDENT );
for( enum PixelFormat i = AV_PIX_FMT_NONE+1; i < AV_PIX_FMT_NB; i++ )
for( enum AVPixelFormat i = AV_PIX_FMT_NONE+1; i < AV_PIX_FMT_NB; i++ )
{
const char *pfname = av_get_pix_fmt_name( i );
if( pfname )
Expand Down

0 comments on commit a0cd7d3

Please sign in to comment.