mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 02:20:07 +01:00
vc1: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -57,16 +57,16 @@ static void vc1_extract_headers(AVCodecParserContext *s, AVCodecContext *avctx,
|
||||
if(size <= 0) continue;
|
||||
switch(AV_RB32(start)){
|
||||
case VC1_CODE_SEQHDR:
|
||||
vc1_decode_sequence_header(avctx, &vpc->v, &gb);
|
||||
ff_vc1_decode_sequence_header(avctx, &vpc->v, &gb);
|
||||
break;
|
||||
case VC1_CODE_ENTRYPOINT:
|
||||
vc1_decode_entry_point(avctx, &vpc->v, &gb);
|
||||
ff_vc1_decode_entry_point(avctx, &vpc->v, &gb);
|
||||
break;
|
||||
case VC1_CODE_FRAME:
|
||||
if(vpc->v.profile < PROFILE_ADVANCED)
|
||||
vc1_parse_frame_header (&vpc->v, &gb);
|
||||
ff_vc1_parse_frame_header (&vpc->v, &gb);
|
||||
else
|
||||
vc1_parse_frame_header_adv(&vpc->v, &gb);
|
||||
ff_vc1_parse_frame_header_adv(&vpc->v, &gb);
|
||||
|
||||
/* keep AV_PICTURE_TYPE_BI internal to VC1 */
|
||||
if (vpc->v.s.pict_type == AV_PICTURE_TYPE_BI)
|
||||
|
||||
Reference in New Issue
Block a user