Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
e481f910
Commit
e481f910
authored
May 11, 2009
by
Laurent Aimar
Browse files
Added a i_original_fourcc field to es_format_t.
parent
7b21f4d2
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/vlc_es.h
View file @
e481f910
...
...
@@ -27,6 +27,7 @@
/* FIXME: i'm not too sure about this include but it fixes compilation of
* video chromas -- dionoea */
#include
"vlc_common.h"
#include
<vlc_fourcc.h>
/**
* \file
...
...
@@ -227,8 +228,9 @@ typedef struct extra_languages_t
*/
struct
es_format_t
{
int
i_cat
;
/**< ES category @see es_format_category_e */
vlc_fourcc_t
i_codec
;
/**< FOURCC value as used in vlc */
int
i_cat
;
/**< ES category @see es_format_category_e */
vlc_fourcc_t
i_codec
;
/**< FOURCC value as used in vlc */
vlc_fourcc_t
i_original_fourcc
;
/**< original FOURCC from the container */
int
i_id
;
/**< es identifier, where means
-1: let the core mark the right id
...
...
src/libvlccore.sym
View file @
e481f910
...
...
@@ -453,7 +453,7 @@ vlc_event_send
__vlc_execve
vlc_fastmem_register
vlc_freeaddrinfo
vlc_fourcc_GetC
lass
vlc_fourcc_GetC
odec
vlc_fourcc_GetDescription
vlc_gai_strerror
vlc_gc_init
...
...
src/misc/es_format.c
View file @
e481f910
...
...
@@ -133,6 +133,7 @@ void es_format_Init( es_format_t *fmt,
{
fmt
->
i_cat
=
i_cat
;
fmt
->
i_codec
=
i_codec
;
fmt
->
i_original_fourcc
=
0
;
fmt
->
i_id
=
-
1
;
fmt
->
i_group
=
0
;
fmt
->
i_priority
=
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment